ZF-7600: Zend_Cache_Core::getIdsMatchingTags
Description
when I call getIds() on my Cache Object I get the right ids but when I call getIdsMatchingTags , it gives me the ids prefixed by the 'namespace' I have to strip it manually because load() on those ids do not load the right cache data.
Comments
Posted by Michael Bagur (michael.bagur) on 2009-08-14T08:57:44.000+0000
I think I found the problem. in getIds() you have :
replacing
return $this->_backend->getIdsMatchingTags($tags);
line 448
by
should work (see see #ZF-6178)
and same thing goes with getIdsNotMatchingTags
Posted by Marc Bennewitz (private) (mabe) on 2010-03-02T02:29:33.000+0000
fixed in r21280 (trunk) and r21293 (1.10 branch)