duanchu0031 2015-02-03 16:21 采纳率: 0%
浏览 29
已采纳

自定义缓存引擎在CakePhp 2.6中不起作用

I'm trying to implement Zend Cache from ZF2 inside CakePhp to make use of it's tagging features, among others.

I created a class inside /app/Lib/Cache/Engine/ZendCacheEngine.php

class ZendCacheEngine extends CacheEngine {
   //All abstract functions from Cake's CacheEngine are 

    public function init($settings = array()){
        //Code here....
    }

    //Along with read, write, delete, etc...
}

For the time being, i only have a print "function name" inside these functions and a return. I did this in my efforts to debug what is going on.

Inside my bootstrap.php I set the config for my custom class:

Cache::config('custom_zend', array(
    'engine' => 'ZendCache',
    'duration' => '+1 hours',
    'probability' => 100,
));

When I try to use it inside my Controllers, the cache read and write functions are being ignored completely. (Function name not being printed in my case, except for the init function)

public function news($id, $something) {
        $result = Cache::read('news', 'custom_zend');
        if (!$result) {

            $result = $this->News->find('all'); // For the sake of simplicity here
            Cache::write('news', $result, 'custom_zend');
        }
        $this->set('news',$news);   
    }

Bottom line, I am assuming the file is in the correct place and the configuration is correct (since the init() function inside my custom class is being called).

I need to know why the actual read/write/etc... are not being called.

  • 写回答

1条回答 默认 最新

  • duanlan7239 2015-02-04 10:02
    关注

    It turns out the init() was not setting the $settings array properly, that's why the other functions were not being called.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法