65.9K
CodeProject is changing. Read more.
Home

Best Strategy for deploying ASP.NET application and application Pool

starIconstarIconstarIconstarIconstarIcon

5.00/5 (3 votes)

Aug 23, 2010

CPOL
viewsIcon

14300

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