0

While reading through the code, often the code sample has a line 'ServicePointManager.DefaultConnectionLimit=12', trying to understand what this is, all seems to point to outbound connection limit for Http request. If my worker role does not make any request to other resources, shall I even care about this setting? Thanks

TOMMY WANG
  • 1,382
  • 3
  • 16
  • 39

1 Answers1

0

Yes, if your Role does not make any request to other resources, then this setting does not matter to you.

You can learn more about this setting at the following link. http://blogs.msdn.com/b/jpsanders/archive/2009/05/20/understanding-maxservicepointidletime-and-defaultconnectionlimit.aspx

What to set ServicePointManager.DefaultConnectionLimit to

-Nithin

Community
  • 1
  • 1