| 123456789101112131415161718192021222324252627282930 |
- <?php
- return [
- // 缓存配置
- 'cache' => [
- // 驱动方式
- 'type' => 'File',
- // 缓存保存目录
- 'path' => CMF_ROOT.'data/runtime/cache/',
- // 缓存有效期 0表示永久缓存
- 'expire' => 0,
- ],
- // REDIS 配置
- 'redis' => [
- // 主机
- 'host' => '127.0.0.1',
- // 链接端口
- 'port' => '6379',
- // 连接密码
- 'password' => '',
- // 'password' => 'derkj&6688',
- // 数据库索引
- 'select' => 1,
- // 超时
- 'timeout' => 120,
- // 有效期
- // 'expire' => 0,
- ],
- ];
|