phpcakephpapcxcache

Does CakePHP have support for APC, XCache and others?


Does CakePHP have support for APC, XCache and others?


Solution

  • 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
    ));