workerman http connections一直累加,看文档说是没销毁,例子上是onMessage 里send就完事儿了,这么用是否正确?
connections:该进程当前有多少个TCP连接实例,连接实例包括 TcpConnection和AsyncTcpConnection实例。这个值是实时数值,并非累计值。注意:当连接实例调用close后,如果相应计数没有相应减少,可能是业务代码保存了$connection对象,导致这个连接实例无法销毁。
问题已解决,怎么删除问题? 读了webman源码,判断浏览器请求Keep-Alive来确定用$connection->send或$connection->close
问题已解决,怎么删除问题?
读了webman源码,判断浏览器请求Keep-Alive来确定用$connection->send或$connection->close