在缓存中创建子文件夹,Cakephp

Creating sub-folders in Caching, Cakephp

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

在您的 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