采用短连接模式连接Redis数据库,Manager中没有主动关闭连接 源代码 `public function __destruct() { $this->flush(); $this->_redis->close(); }`` 做了修改 `public function __destruct() { $this->flush(); $this->_redis->close(); }`` 、
采用短连接模式连接Redis数据库,Manager中没有主动关闭连接
源代码
`public function __destruct()
{
$this->flush();
$this->_redis->close();
做了修改
`public function __destruct()
{
$this->flush();
$this->_redis->close();
、