44 lines
1.7 KiB
PHP
44 lines
1.7 KiB
PHP
<?php
|
||
return [
|
||
// 默认缓存驱动
|
||
'default' => env('CACHE_MODE', 'file'),
|
||
// 缓存连接方式配置
|
||
'stores' => [
|
||
// redis缓存
|
||
'redis' => [
|
||
// 驱动方式
|
||
'type' => 'redis',
|
||
// 服务器地址
|
||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||
// 服务器端口
|
||
'port' => env('REDIS_PORT', 6379),
|
||
// 服务器密码
|
||
'password' => env('REDIS_PASSWORD', ''),
|
||
// 数据库
|
||
'select' => env('REDIS_DB', 0),
|
||
// 缓存前缀
|
||
'prefix' => 'cache:',
|
||
// 默认缓存有效期 0表示永久缓存
|
||
'expire' => 0,
|
||
// Thinkphp官方没有这个参数,由于生成的tag键默认不过期,如果tag键数量很大,避免长时间占用内存,可以设置一个超过其他缓存的过期时间,0为不设置
|
||
'tag_expire' => 86400 * 30,
|
||
// 缓存标签前缀
|
||
'tag_prefix' => 'tag:',
|
||
// 连接池配置
|
||
'pool' => [
|
||
'max_connections' => 5, // 最大连接数
|
||
'min_connections' => 1, // 最小连接数
|
||
'wait_timeout' => 3, // 从连接池获取连接等待超时时间
|
||
'idle_timeout' => 60, // 连接最大空闲时间,超过该时间会被回收
|
||
'heartbeat_interval' => 50, // 心跳检测间隔,需要小于60秒
|
||
],
|
||
],
|
||
// 文件缓存
|
||
'file' => [
|
||
// 驱动方式
|
||
'type' => 'file',
|
||
// 设置不同的缓存保存目录
|
||
'path' => runtime_path() . '/file/',
|
||
],
|
||
],
|
||
]; |