节点 - 客户端内存泄漏是否对服务器性能有影响
Node - Does client side memory leak effects on server performance
在节点应用中,如果客户端有任何内存泄漏(比如google chrome),是否会影响服务器性能?
In node application, if there is any memory leak on client side (say google chrome), does it effects server performance?
不,除非流氓客户端开始发出疯狂数量的请求或类似的东西。
使用客户端的高内存对您的服务器没有任何直接影响。客户端和服务器是独立的计算机,位于不同的本地网络上,没有共享资源。
在节点应用中,如果客户端有任何内存泄漏(比如google chrome),是否会影响服务器性能?
In node application, if there is any memory leak on client side (say google chrome), does it effects server performance?
不,除非流氓客户端开始发出疯狂数量的请求或类似的东西。
使用客户端的高内存对您的服务器没有任何直接影响。客户端和服务器是独立的计算机,位于不同的本地网络上,没有共享资源。