浏览器长轮询超时
我正在尝试使用 node.js 处理 60 秒的长轮询请求。我面临的问题是,浏览器超时。相同的设置可运行 30 秒。有人能建议如何实现这一目标吗?使用 JQuery 作为 JS 框架。
谢谢...
I'm trying to serve long polling requests for 60 secs using node.js. The problem I'm facing is, the browser is getting timed out. The same setup is working for 30 secs. Can anybody suggest how to achieve this? Using JQuery as JS framework.
Thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,node.js 的 TCP/IP 连接超时时间为 60 秒。您可以通过显式设置超时来解决此问题。这是一个简单的示例:
您可以通过将超时设置为 0 来告诉节点无限期地保持连接打开。另请注意,默认的 60 秒超时适用于除 TCP/IP 之外的所有套接字连接。
By default, node.js has a 60 second timeout for TCP/IP connections. You can get around this by explicitly setting the timeout. Here's a quick example:
You can tell node to hold the connection open indefinitely by setting to the timeout to 0. Also, note that the default 60 second timeout applies to all socket connections in addition to TCP/IP.