System.Net.ServicePointManager.DefaultConnectionLimit == 24 – > BUG?

前端之家收集整理的这篇文章主要介绍了System.Net.ServicePointManager.DefaultConnectionLimit == 24 – > BUG?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的调试器中检查.Net 4中的System.Net.ServicePointManager.DefaultConnectionLimit时,我看到非常高的数字.我在一台机器上看到24,在另一台机器上看到48.

对于新创建的ASP.NET MVC 3项目,即使没有对其进行任何配置更改,情况也是如此.这是一个错误吗?文档明确指出默认值为2:

The maximum number of concurrent connections allowed by a ServicePoint
object. The default value is 2.

From 07000

DefaultNonPersistentConnectionLimit和DefaultPersistentConnectionLimit字段分别是更真实的4和2,但DefaultConnectionLimit数字似乎超出范围.

解决方法

这不是一个错误.每个cpu可能有12个.

该值来自您的Web.config或Machine.config中的<connectionManagement>.如果两个文件都不包含元素,则可能是由autoConfig =在<processModel> element的True设置配置的.

原文链接:https://www.f2er.com/aspnet/251200.html

猜你在找的asp.Net相关文章