mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-03 12:29:57 +08:00
v6.0 config
This commit is contained in:
parent
7f0cc5ab66
commit
74561297db
@ -17,27 +17,27 @@ if(MyFileConfig('common_session_is_use_cache', '', 0, true) == 1)
|
|||||||
// redis配置
|
// redis配置
|
||||||
// 请确保缓存配置文件cache.php中的stores中已经添加了redis缓存配置
|
// 请确保缓存配置文件cache.php中的stores中已经添加了redis缓存配置
|
||||||
$config = [
|
$config = [
|
||||||
'type' => 'cache',
|
'type' => 'cache',
|
||||||
'store' => 'redis',
|
'store' => 'redis',
|
||||||
'prefix' => MyFileConfig('common_cache_session_redis_prefix', '', 'shopxo', true),
|
'prefix' => MyFileConfig('common_cache_session_redis_prefix', '', 'shopxo', true),
|
||||||
// 过期时间
|
// 过期时间
|
||||||
'expire' => 43200,
|
'expire' => 43200,
|
||||||
];
|
];
|
||||||
} else {
|
} else {
|
||||||
// 默认配置
|
// 默认配置
|
||||||
$config = [
|
$config = [
|
||||||
// session name
|
// session name
|
||||||
'name' => 'PHPSESSID',
|
'name' => 'PHPSESSID',
|
||||||
// SESSION_ID的提交变量,解决flash上传跨域
|
// SESSION_ID的提交变量,解决flash上传跨域
|
||||||
'var_session_id' => '',
|
'var_session_id' => '',
|
||||||
// 驱动方式 支持file cache
|
// 驱动方式 支持file cache
|
||||||
'type' => 'file',
|
'type' => 'file',
|
||||||
// 存储连接标识 当type使用cache的时候有效
|
// 存储连接标识 当type使用cache的时候有效
|
||||||
'store' => null,
|
'store' => null,
|
||||||
// 过期时间
|
// 过期时间
|
||||||
'expire' => 43200,
|
'expire' => 43200,
|
||||||
// 前缀
|
// 前缀
|
||||||
'prefix' => 'shopxo',
|
'prefix' => 'shopxo',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
return $config;
|
return $config;
|
||||||
|
Loading…
Reference in New Issue
Block a user