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.

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

报告相同问题?

悬赏问题

  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)