3

HTTP/1.1 指定默认情况下应使用持久连接。我想知道 ASP.NET Web 开发服务器是否支持它们。到目前为止,我已经看到,即使 HTTP 请求包含

Connection: Keep-Alive  

header 包含的响应

Connection: close

这会强制浏览器在请求后关闭连接,而不是使用流水线。这不是一个大问题,但有一个有趣的缺点是浏览器会在每个请求之前进行 DNS 查找,这会显着增加页面加载时间。
最好在 Firebug 中看到(在“网络”选项卡中)。

4

1 回答 1

1

As per the link below Cassini doesn't support persistent connections. It will always return Connection: Close

Reusing Connections

于 2012-07-10T15:38:08.343 回答