Does CakePHP have support for APC, XCache and others?
In cake's /app/config/core.php ,there are some options for you to set the cache engines(version newer than 1.2).e.g
  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
));
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With