cache.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. return [
  15. // 默认缓存驱动
  16. 'default' => 'file',
  17. // 缓存连接配置
  18. 'stores' => [
  19. 'file' => [
  20. // 驱动方式
  21. 'type' => 'File',
  22. // 缓存保存目录
  23. 'path' => app()->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR,
  24. // 缓存名称前缀
  25. 'prefix' => '',
  26. // 缓存有效期 0 表示永久缓存
  27. 'expire' => 0,
  28. // 缓存标签前缀
  29. 'tag_prefix' => 'tag:',
  30. // 序列化机制
  31. 'serialize' => [],
  32. ],
  33. ],
  34. ];