cache.php 851 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. use think\facade\Env;
  3. // +----------------------------------------------------------------------
  4. // | 缓存设置
  5. // +----------------------------------------------------------------------
  6. return [
  7. // 默认缓存驱动
  8. 'default' => Env::get('cache.driver', 'file'),
  9. // 缓存连接方式配置
  10. 'stores' => [
  11. 'file' => [
  12. // 驱动方式
  13. 'type' => 'File',
  14. // 缓存保存目录
  15. 'path' => '',
  16. // 缓存前缀
  17. 'prefix' => '',
  18. // 缓存有效期 0表示永久缓存
  19. 'expire' => 0,
  20. // 缓存标签前缀
  21. 'tag_prefix' => 'tag:',
  22. // 序列化机制 例如 ['serialize', 'unserialize']
  23. 'serialize' => [],
  24. ],
  25. // 更多的缓存连接
  26. ],
  27. ];