Hi, > The issue ended up being that Zend_Cache file uses FLOCK when writing to a > cache file. > This seemed to work really well in development, but in production under > heavy load FLOCK is failing for caching model metadata with Zend_Cache. > I suspect that is why the framework developers allow a couple of other > types of caching. > Soluction for me right now was to use Sqlite and store the .sq on the tmpfs > mount.
You can also desactivate "file_locking" : http://framework.zend.com/manual/en/zend.cache.backends.html#zend.cache.backends.file With "read_control = true" (default), it's not optimal but safe (in terms of cache corruption) Regards -- Fabien MARTY [EMAIL PROTECTED]
