使调试工具使用Memcache

时间:2012-03-30 14:26:01

标签: php cakephp configuration memcached

我已将CakePHP 2.1配置为使用Memcache。 但是debugkit坚持使用Filecache。 有没有办法让它使用Memcache?

似乎没有提到在

配置此方法的方法

1 个答案:

答案 0 :(得分:0)

我在与插件的作者交互后找到了答案。 正如我想象的那样,它非常简单,只是在文档中没有给出。 答案可以在link找到,hint由作者自己提供。

所以我们可以像core.php一样设置配置

/**
 * Configure Debug kit to use Memcache instead of File cache
 */
Cache::config('debug_kit', array(
    'engine' => $engine,
    'prefix' => $prefix . 'debug_kit',
    'path' => CACHE . 'debug_kit' . DS,
    'serialize' => ($engine === 'File'),
    'duration' => $duration
));

$engine可以是任何缓存引擎。

PS:我已要求作者将其添加到文档中