Hi,
Can you pass any comment on the usage of the CPU cores and app pools, would I be right in saying that if you share a single app pool that app pool can only utilise 1 of the available 8 cores on my server?
Also would it cause performance issues with it only using that one piece if allocated memory.
I am confident it is better for redundancy, however performance is also a big concern.
Thanks for your help
Anthony
Main Topics
Browse All Topics





by: meverestPosted on 2009-07-03 at 18:51:15ID: 24775338
Hi,
it is always best to isolate applications into independent app pools. When the applications are small or seldom used, then it is OK to group them into a single pool.
the idea of seperation is so that when there is a problem with any application, it does not affect any other one. The idea of sharing an application pool is to reduce resource overheads when there are a large number of relatively low demand apps.
at the very least, you should make a seperate application pool per customer (or per web site)
cheers.