在Caching,Cakephp中创建子文件夹

时间:2015-01-28 09:57:57

标签: cakephp caching

我在tmp中有一个Cache文件夹。 我想在缓存文件夹中有一个子文件夹,用于存储该文件夹中特定页面 ONLY 的缓存文件。 我该怎么办?

1 个答案:

答案 0 :(得分:1)

在你的app / config中找到bootstrap.php

替换以下行

Cache::config('users_cache', array( // users_cache is the custom cache log name
  'engine' => File,
  'prefix' => 'cake_',  
  'path' => CACHE . 'users' . DS, // added sub-directory in users in tmp/cache
  'serialize' => true,
  'duration' => '+360 minutes'
));

现在,在 app / tmp / cache / users

中创建一个目录

然后将其用作以下格式

Cache::write('enter_name', $users,'users_cache');

为了获得最佳参考,请阅读以下文章Cache::write