redis.php 428 B

12345678910111213
  1. <?php
  2. return [
  3. //Redis驱动
  4. 'host' => "182.40.104.187", // 服务器地址
  5. 'port' => 6379, // 端口
  6. 'password' => "hdl2022", // 密码
  7. 'select' => 0, // 使用哪一个 db,默认为 db0
  8. 'timeout' => 0, // 连接超时时间
  9. 'expire' => 0, // 缓存有效期 0表示永久缓存
  10. 'persistent' => false, // 是否是长连接
  11. 'prefix' => '', // 缓存前缀
  12. ];