我正在尝试使用 Codeigniter 缓存系统,将一些远程 xml 文件缓存到“文件缓存”中。
当我请求 xmls 时,每个想法看起来都很棒,但是 codeigniter 不缓存文件,而是返回一个空缓存,缓存文件只包含以下数据:
a:3:{s:4:"time";i:1379515910;s:3:"ttl";i:120;s:4:"data";b:1;}
我正在使用下面的代码来缓存 xml:
$this->load->driver('cache');
$this->cache->file->save('first', $data, 120);
[更新]
现在我可以保存缓存,但我无法挽救保存的数据。当我在缓存下运行命令时返回false
$this->cache->get('show');
我哪里错了?
谢谢。