CakePHP 是否支持 APC、XCache 等?
最佳答案
在 cake 的 /app/config/core.php
中,有一些选项供您设置缓存引擎(版本高于 1.2)。例如
APC (http://pecl.php.net/package/APC)
Cache::config('default', array(
'engine' => 'Apc', //[required]
'duration'=> 3600, //[optional]
'probability'=> 100, //[optional]
'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string
));
关于php - CakePHP 是否支持 APC、XCache 等?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2609900/