I have installed the memcache in my php zend code. it seems no error. but there is a warning in the log saying
Zend_Cache_Core::save() / automatic cleaning is not available/necessary with this backend.
what does it really mean?
I have installed the memcache in my php zend code. it seems no error. but there is a warning in the log saying
Zend_Cache_Core::save() / automatic cleaning is not available/necessary with this backend.
what does it really mean?
Zend Cache supports different backend storage devices including memcache, file storage, APC, etc.
Each one has its own implementation - as you can see in the Zend library - and apparently the memcache implementation doesn't support automatic cleaning.
You can see the code here: Zend\Cache\Backend\Memcached.php
Well, i'm a bit late, but here is the solution :
place "automatic_cleaning_factor" => 0 in your Zend_Cache::factory frontend's options