云服务工作者角色 ServicePointManager.DefaultConnectionLimit

Cloud service worker role ServicePointManager.DefaultConnectionLimit

通读代码时,通常代码示例有一行'ServicePointManager.DefaultConnectionLimit=12',试图理解这是什么,似乎都指向Http 请求的出站连接限制。如果我的工作者角色不对其他资源提出任何请求,我还需要关心这个设置吗?谢谢

是的,如果你的角色没有对其他资源提出任何请求,那么这个设置对你来说无关紧要。

您可以在以下 link 了解有关此设置的更多信息。 http://blogs.msdn.com/b/jpsanders/archive/2009/05/20/understanding-maxservicepointidletime-and-defaultconnectionlimit.aspx

What to set ServicePointManager.DefaultConnectionLimit to

-尼辛