- // +----------------------------------------------------------------------
- // | 缓存设置
- // +----------------------------------------------------------------------
- 'cache' => [
- // 驱动方式
- 'type' => 'Redis',
- // 缓存保存目录
- 'path' => CACHE_PATH,
- // 缓存前缀
- 'prefix' => '',
- // 缓存有效期 0表示永久缓存
- 'expire' => 0,
- 'host' => '127.0.0.1',
- 'port' => '6379',
- 'password' => '',
- 'timeout'=> 3600,
- ],
- // +----------------------------------------------------------------------
- // | 会话设置
- // +----------------------------------------------------------------------
- 'session' => [
- 'id' => '',
- // SESSION_ID的提交变量,解决flash上传跨域
- 'var_session_id' => '',
- // SESSION 前缀
- 'prefix' => 'think',
- // 驱动方式 支持redis memcache memcached
- 'type' => 'redis',
- // 是否自动开启 SESSION
- 'auto_start' => true,
- 'host' =>'127.0.0.1',
- 'port' =>'6379',
- ],
复制代码
|