缓存带key的cakephp视图


Caching cakephp views with key

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

Thanks in advance

您可能对groups-cache的前缀感兴趣:

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