Display Name
Display Name

Reputation: 15101

For a single Application Pool, how many Worker Processes should be allowed to run?

enter image description here

Honestly I don't know the effect of increasing or decreasing the number of worker processes.

For a single Application Pool, how many Worker Processes should be allowed to run?

Upvotes: 3

Views: 1297

Answers (2)

user655459
user655459

Reputation: 41

You should also be aware that increasing the worker processes creates a web garden. All worker processes have their own copy of application state, in-process session state, caches, and static data.

Upvotes: 4

detroitpro
detroitpro

Reputation: 3913

I follow, and I'm looking to find it in the documentation, that you should not run more worker processes then twice the number of processor cores.

  • In a single core system : 2
  • In a dual core system : 4
  • etc.

Upvotes: 3

Related Questions