作者 邓超

x

... ... @@ -30,7 +30,7 @@ function start(){
// 每秒检查一次是否空闲redis
foreach (\Lib\RedisPool::$instance as $redis){
if(time()-2 > $redis->lastTimer ){
if(time()-5 > $redis->lastTimer ){
$redis->close();
}
}
... ...
... ... @@ -47,7 +47,7 @@ class RedisPool {
$this->lastTimer = time();
$this->client = new \Redis();
$this->client->pconnect(REDIS_HOST,REDIS_PORT,1);
$this->client->pconnect(REDIS_HOST,REDIS_PORT,2);
// 密码
REDIS_PASSWORD && $this->client->auth(REDIS_PASSWORD);
// 用库4
... ...