cache.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 缓存设置
  4. // +----------------------------------------------------------------------
  5. return [
  6. // 默认缓存驱动
  7. //'default' => env('cache.driver', 'file'),
  8. 'default' => env('cache.driver', 'redis'),
  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. 'redis' => [
  27. // 驱动方式
  28. 'type' => 'redis',
  29. // 服务器地址
  30. 'host' => '127.0.0.1',
  31. 'port' => '6379',
  32. 'password' => '',
  33. 'select' => '0',
  34. ],
  35. ],
  36. ];