Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.10.5
-
Fix Version/s: 1.10.7
-
Component/s: Zend_Cache
-
Labels:None
Description
New code:
public function _makeId($name, $parameters)
We can then invalidate with:
$cache = Zend_Cache::factory('Class','Memcached', $frontendOptions, $backendOptions);
$cache->remove($cache->_makeId($method, $parms));
For database:
$query_cache = Zend_Cache::factory('Core','Memcached', $frontendOptions, $backendOptions);
$query_cache->remove($name); // note: this does not need _makeId()
Can someone please change _makeId to public? or add a wrapper so we can get at the md5 value so we can invalidate for memcache?