mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-01 03:18:33 +08:00
26 lines
966 B
PHP
Executable File
26 lines
966 B
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: Devil
|
|
// +----------------------------------------------------------------------
|
|
|
|
// +----------------------------------------------------------------------
|
|
// | 缓存设置
|
|
// +----------------------------------------------------------------------
|
|
|
|
return [
|
|
// 驱动方式
|
|
'type' => 'File',
|
|
// 缓存保存目录
|
|
'path' => '',
|
|
// 缓存前缀
|
|
'prefix' => '',
|
|
// 缓存有效期 0表示永久缓存
|
|
'expire' => 0,
|
|
];
|
|
?>
|