浏览器长轮询超时

发布于 2024-08-27 21:48:36 字数 113 浏览 6 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑梦风尘 2024-09-03 21:48:36

默认情况下,node.js 的 TCP/IP 连接超时时间为 60 秒。您可以通过显式设置超时来解决此问题。这是一个简单的示例:

http.createServer(function (req, res) {
    // Connection now times out after 120 seconds
    req.connection.setTimeout(120000);
    // ... TODO: server logic ...
}).listen(8000);

您可以通过将超时设置为 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:

http.createServer(function (req, res) {
    // Connection now times out after 120 seconds
    req.connection.setTimeout(120000);
    // ... TODO: server logic ...
}).listen(8000);

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文