Reputation: 15101
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
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
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.
Upvotes: 3