mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-05 05:19:21 +08:00
45 lines
1.7 KiB
PHP
45 lines
1.7 KiB
PHP
|
<?php
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Author: Devil
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
|
|||
|
// 是否开启redis
|
|||
|
$common_data_is_use_cache = MyFileConfig('common_data_is_use_cache', '', 0, true);
|
|||
|
if($common_data_is_use_cache == 1)
|
|||
|
{
|
|||
|
// redis配置
|
|||
|
$config = [
|
|||
|
// 使用redis
|
|||
|
'type' => 'redis',
|
|||
|
// 连接地址
|
|||
|
'host' => MyFileConfig('common_cache_data_redis_host', '', '127.0.0.1', true),
|
|||
|
// 端口号
|
|||
|
'port' => MyFileConfig('common_cache_data_redis_port', '', 6379, true),
|
|||
|
// 密码
|
|||
|
'password' => MyFileConfig('common_cache_data_redis_password', '', '', true),
|
|||
|
// 全局缓存有效期(0为永久有效)
|
|||
|
'expire' => MyFileConfig('common_cache_data_redis_expire', '', 0, true),
|
|||
|
// 缓存前缀
|
|||
|
'prefix' => MyFileConfig('common_cache_data_redis_prefix', '', 'shopxo', true),
|
|||
|
];
|
|||
|
} else {
|
|||
|
// 默认配置
|
|||
|
$config = [
|
|||
|
// 驱动方式
|
|||
|
'type' => 'File',
|
|||
|
// 缓存保存目录
|
|||
|
'path' => '',
|
|||
|
// 缓存前缀
|
|||
|
'prefix' => 'shopxo',
|
|||
|
// 缓存有效期 0表示永久缓存
|
|||
|
'expire' => 0,
|
|||
|
];
|
|||
|
}
|
|||
|
return $config;
|
|||
|
?>
|