Does an IIS web garden use threads or processes?

928 Views Asked by At

When you set an application pool's Maximum Worker Processes attribute in IIS are you actually setting the number of processes or the number of threads?

1

There are 1 best solutions below

0
On BEST ANSWER

These are processes (w3wp instances). Each process will have multiple threads.

ASP.NET Web Garden - How Many Worker Processes Do I Need?