Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / ASP.NET

Best Strategy for deploying ASP.NET application and application Pool

5.00/5 (3 votes)
23 Aug 2010CPOL 14.3K  
Best Strategy for deploying ASP.NET application and application Pool
Hi,

I was exploring some aspect of deployment with respect to the asp.net application and application pool.

So the conclusion is :

If you want to share the security context, deploy them under the same application pool.With this setup, Keep in mind that by default you will get only 25 threads/cpu. If one collapses, all in that pool will get collapses.

Hence If your priority is for availability ,reliability and cpu bound then the best practice could be to Segregate the application( one application/pool).

I hope this helps!.

Regards,
-Vinayak

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)