完整配置取自于 ./config/setting.php
$config['cache'] = array(
'sessionType' => 'file', //缓存方式 database/file/redis/memcached
'sessionTime' => 3600*4, //session失效时间
'cacheType' => 'file', //缓存方式 database/file/redis/memcached
'lockTimeout' => 20, //并发锁获取超时时间 20s;
'cacheTime' => 3600*5, //缓存默认时间;
'file' => array('path' => TEMP_PATH.'_cache/'),
'redis' => array(
'host' => '127.0.0.1',
'port' => 6379,
// 'timeout' => 20, // 连接超时时间
// 'auth' => '', // 密码
// 'pconnect' => true, // 是否持久链接;
// 'server' => array('10.10.10.1:8001','10.10.10.2:8001'), //集群方式连接;有则忽略host/port
// 'mode' => 'slave', // slave、sentinel(暂不支持)、cluster
// 'db' => 0, // 选择数据库; 默认0, db0~15
),
'memcached' => array(
'host' => '127.0.0.1',
'port' => 11211,
// 'server'=> array('10.10.10.1:8001','10.10.10.2:8001'), // 集群方式连接;有则忽略host/port
),
);