1、 redis select database

feature:
1、 config tml data cache driver
This commit is contained in:
Default
2025-05-19 16:42:49 +08:00
parent 04aff1655c
commit f7c50f1205
4 changed files with 51 additions and 40 deletions

View File

@@ -8,7 +8,8 @@ return [
// 默认缓存驱动
'default' => env('CACHE_DRIVER', 'file'),
'cache_time' => env('CACHE_TIME', 60 * 60 * 3), // 缓存时间 3小时
// 缓存时间 3小时
'cache_time' => env('CACHE_TIME', 60 * 60 * 3),
// 缓存连接方式配置
'stores' => [
@@ -36,12 +37,12 @@ return [
'host' => env('REDIS_HOST', '127.0.0.1'),
// 端口
'port' => env('REDIS_PORT', '6379'),
// 密码
// 密码
'password' => env('REDIS_PASSWORD', ''),
// 缓存前缀
'prefix' => env('REDIS_PREFIX', ''),
// 缓存前缀
'database' => env('REDIS_DATABASE', 0),
//
'select' => env('REDIS_DATABASE', 0),
// 缓存标签前缀
'tag_prefix' => '',

View File

@@ -35,6 +35,9 @@ return [
// 是否开启模板编译缓存,设为false则每次都会重新编译
'tpl_cache' => env('VIEW_TPL_CACHE', false),
//页面数据缓存,实际是控制器数据缓存
//页面数据缓存
'view_data_cache' => env('VIEW_DATA_CACHE', false),
//页面数据缓存驱动
'view_data_cache_driver' => env('VIEW_DATA_CACHE_DRIVER', false),
];