使用密钥缓存cakephp视图

时间:2014-07-08 08:10:21

标签: php cakephp caching cakephp-2.0

我需要一点帮助。我使用cakephp's default cache engine (File)并希望保存view caches by key。这是因为我的网站是多语言的,我使用session来保存语言而不是url prefix。 是否可以在控制器的缓存文件中添加prefix or suffix? 我在cakephp 5.2中使用apache server

提前致谢

1 个答案:

答案 0 :(得分:0)

就前缀而言,您可能对groups-cache感兴趣:

Cache::config(
    $this->cacheConfig, 
    array(
        'engine' => 'File', 
        'duration' => TIME, 
        'prefix' => KEY,    
        'groups' => array(
            'GROUP_A'
        )
   )
);