From: <gem...@li...> - 2011-11-07 09:27:02
|
Revision: 186 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=186&view=rev Author: mennodekker Date: 2011-11-07 09:26:56 +0000 (Mon, 07 Nov 2011) Log Message: ----------- Improved cache by using prefix so 'apc' won't get name clashes on a shared environment Modified Paths: -------------- trunk/library/classes/GemsEscort.php Modified: trunk/library/classes/GemsEscort.php =================================================================== --- trunk/library/classes/GemsEscort.php 2011-11-04 14:01:18 UTC (rev 185) +++ trunk/library/classes/GemsEscort.php 2011-11-07 09:26:56 UTC (rev 186) @@ -166,7 +166,8 @@ } if ($exists) { - $cacheFrontendOptions = array('automatic_serialization' => true); + $cacheFrontendOptions = array('automatic_serialization' => true, + 'cache_id_prefix' => GEMS_PROJECT_NAME . '_'); $cache = Zend_Cache::factory('Core', $cacheBackend, $cacheFrontendOptions, $cacheBackendOptions); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |