views:

489

answers:

1

How can I increase the number of threads/concurrent requests per working process on IIS7?

I don't want to increase the number of processes to create a web garden (for now).

+1  A: 

I found it:

 <system.web>
        <applicationPool maxConcurrentRequestsPerCPU="12" maxConcurrentThreadsPerCPU="0" requestQueueLimit="5000"/>
 </system.web>

http://blogs.msdn.com/tmarq/archive/2007/07/21/asp-net-thread-usage-on-iis-7-0-and-6-0.aspx http://msdn.microsoft.com/en-us/library/dd560842%28VS.100%29.aspx

rjlopes