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