config.php 639 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. return [
  3. // 缓存配置
  4. 'cache' => [
  5. // 驱动方式
  6. 'type' => 'File',
  7. // 缓存保存目录
  8. 'path' => CMF_ROOT.'data/runtime/cache/',
  9. // 缓存有效期 0表示永久缓存
  10. 'expire' => 0,
  11. ],
  12. // REDIS 配置
  13. 'redis' => [
  14. // 主机
  15. 'host' => '127.0.0.1',
  16. // 链接端口
  17. 'port' => '6379',
  18. // 连接密码
  19. // 'password' => '',
  20. 'password' => 'derkj&6688',
  21. // 数据库索引
  22. 'select' => 1,
  23. // 超时
  24. 'timeout' => 120,
  25. // 有效期
  26. // 'expire' => 0,
  27. ],
  28. ];