IIS / ASP.NET 如何处理死连接? (HTTP Keep-Alive 无效)

发布于 2024-09-25 13:34:51 字数 153 浏览 2 评论 0原文

IIS / ASP.NET 可以使用 TCP keepalive 选项来检测死连接吗?请注意,这些连接没有有效的 HTTP Keep-Alive 选项。这些连接刚刚被客户端放弃,使 IIS / ASP.NET 线程挂起,等待数据。 IIS / ASP.NET 是否有适当的机制来处理此类情况?

Can IIS / ASP.NET make use of the TCP keepalive option to detect dead connections? Note that these connections do not have the HTTP Keep-Alive option in effect. These are connections, just abandoned by the clients, leaving IIS / ASP.NET threads hanging, waiting for data. Are there mechanisms in place by which IIS / ASP.NET handles such scenarios?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

抚笙 2024-10-02 13:34:51

IIS 可以选择在启用 TCP KeepAlives 的情况下打开连接,但所有研究都表明它使用系统设置。系统默认启用 2 小时 KeepAliveTimes。

http://support.microsoft.com/kb/120642 提供了注册表值的参考。

IIS has the option to open the connection as with TCP KeepAlives enabled, but all research suggests it uses the system setting for it. The system defaults to enabled with 2hr KeepAliveTimes.

http://support.microsoft.com/kb/120642 has references for registry values.

心安伴我暖 2024-10-02 13:34:51

ASP.NET 只处理通过连接发送的 HTTP 数据,没有 HTTP 发生的时期,但 TCP 连接保持活动状态对它来说没有任何意义。

IIS 不会无限期地保持 TCP 连接处于活动状态,但会定期检查它们是否空闲。

ASP.NET only handles HTTP data sent over the connection, the period where there is no HTTP happening, but the TCP connection is kept alive means nothing to it.

IIS will not keep the TCP connection alive indefinitely, but periodically checks them for idleness.

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