crx349 发表于 2018-11-25 11:47:37

Thinkphp 5 Redis config配置


// +----------------------------------------------------------------------
// | 缓存设置
// +----------------------------------------------------------------------

    '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',
    ],



页: [1]
查看完整版本: Thinkphp 5 Redis config配置