Optimize ASP.NET HTTP Connection Limit

Mads has a nice post on optimizing ASP.NET to utilize more than its default of 2 concurrent web connections. Here’s the relevant config info:

<system.net>

<add address="*" maxconnection=“8″/>

</system.net>

[categories: performance]