这很简单,但我无法确定为什么它根本不会像Cookbook所说的那样起作用。当我运行以下内容时,我得到一个空白的结果:
Cache::write('req_quals', $value, 'permacache');
Cache::read('req_quals', 'permacache');
配置如下:
Cache::config('permacache', array('engine' => 'File', 'path' => CACHE . 'permacache' . DS, 'duration' => '+9999 days'));
我错过了一些明显的东西吗?