With the Zend Data Cache – PHP API, is there a method for retrieving all keys in a namespace?
Essentially, I need to replicate what you can do with apc_cache_info, such as
$info = apc_cache_info("user");
$keys = array();
foreach ($info["cache_list"] as $entry) {
$keys[] = $entry["info"];
}
It is not apparent from the documentation if this is possible.
Thanks.
The Zend File Backend supports getTags() and getIds()
In my bootstrap file i init the cache
Then in my controller i can call
Suggest you check the Zend code for the specific cache backend your using.