cache.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 缓存设置
  4. // +----------------------------------------------------------------------
  5. return [
  6. // 默认缓存驱动
  7. 'default' => env('cache.driver', 'redis'),
  8. // 缓存连接方式配置
  9. 'stores' => [
  10. 'file' => [
  11. // 驱动方式
  12. 'type' => 'File',
  13. // 缓存保存目录
  14. 'path' => '',
  15. // 缓存前缀
  16. 'prefix' => '',
  17. // 缓存有效期 0表示永久缓存
  18. 'expire' => 0,
  19. // 缓存标签前缀
  20. 'tag_prefix' => 'tag:',
  21. // 序列化机制 例如 ['serialize', 'unserialize']
  22. 'serialize' => [],
  23. ],
  24. 'redis'=>[
  25. 'type' => 'Redis',
  26. 'host' => env('redis.host'),
  27. 'port' => env('redis.port'),
  28. 'password' =>env('redis.password'),
  29. 'timeout' => 3600
  30. ],
  31. 'redis2'=>[
  32. 'type' => 'Redis',
  33. 'host' => '123.249.88.98',
  34. 'port' => '6379',
  35. 'password' => 'caixiao369',
  36. 'timeout' => 3600
  37. ]
  38. // 更多的缓存连接
  39. ],
  40. ];