我需要一点帮助。我使用cakephp's default cache engine (File)
并希望保存view caches by key
。这是因为我的网站是多语言的,我使用session
来保存语言而不是url prefix
。
是否可以在控制器的缓存文件中添加prefix or suffix
?
我在cakephp 5.2
中使用apache server
。
提前致谢
答案 0 :(得分:0)
就前缀而言,您可能对groups-cache感兴趣:
Cache::config(
$this->cacheConfig,
array(
'engine' => 'File',
'duration' => TIME,
'prefix' => KEY,
'groups' => array(
'GROUP_A'
)
)
);