缓存
// config/config.php
'cache' => array(
'enable' => true,
'prefix' => 'mc_df_',
'cache_type' => 'redis', // 缓存类型 file、memcache、redis
'cache_time' => 7200,
'cache_name' => 'cfc_data',
'serialize' => true, // 开启redis自动序列化存储
'memcache' => array(
'timeout' => 1,
'servers' => array(
array( 'host' => '127.0.0.1', 'port' => 11211, 'weight' => 1 ),
)
),
// redis目前只支持单台服务器
'redis' => array(
'timeout' => 30,
'server' => array( 'host' => '127.0.0.1', 'port' => 6379, 'pass' => 'foobared')
),
'session' => array(
'type' => 'cache', // session 缓存类型 default、cache、mysql
'expire' => 1440, // session 回收时间 默认24分钟:1440、一天:86400
)
)Redis
Last updated