rjlopes
rjlopes

Reputation: 2480

iis7 increase number of threads/concurrent requests per working process

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).

Upvotes: 9

Views: 28335

Answers (2)

Johan Wikström
Johan Wikström

Reputation: 921

Check out http://iistuner.codeplex.com/ it solved all of our problems regarding setting these numbers. It basically fixes all wierd and hard to find settings with one click.

Upvotes: 1

rjlopes
rjlopes

Reputation: 2480

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(VS.100).aspx

Upvotes: 13

Related Questions