作者 邓超

调优

@@ -65,7 +65,7 @@ class ProxyService @@ -65,7 +65,7 @@ class ProxyService
65 // 处理数据 65 // 处理数据
66 $result = $this->clients[$fd]->exec($data); 66 $result = $this->clients[$fd]->exec($data);
67 // 解锁 67 // 解锁
68 - $this->clients[$fd]->unlock(); 68 + if(isset($this->clients[$fd])) $this->clients[$fd]->unlock();
69 // 返回结果 69 // 返回结果
70 $server->send($fd, $this->push($result[1])); 70 $server->send($fd, $this->push($result[1]));
71 // 是否关闭连接 71 // 是否关闭连接