How to keep ASP.NET assemblies in AppDomain alive? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T04:06:01Z http://stackoverflow.com/feeds/question/838318 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/838318/how-to-keep-asp-net-assemblies-in-appdomain-alive 1 How to keep ASP.NET assemblies in AppDomain alive? this.__curious_geek 2009-05-08T05:08:28Z 2009-09-30T22:55:02Z <p><strong>Scenario:</strong> I've an n-Tier enterprise ASP.NET application deployed using Web Deployment Projects. All tiers produce independent assemblies that is consumed by the ASP.NET application.</p> <p><strong>Problem:</strong> When I run the app. for the first time after deployment it takes lot of time to load dependent assemblies in memory. But once loaded its lighting fast app. In case if there are no users accessing the app, IIS unloads the assemblies from the memory and when a user tried to access the app on a later instance it goes on loading all the assemblies once again taking the same amount of time to load as it takes to do so for the first time.</p> <p><strong>I'm looking for a solution that enables me to keep my assemblies loaded into memory persistently overriding the volatile nature of assemblies towards memory residency.</strong></p> <p>Or any other solution that lets my users happily use the app resolving the mentioned problem.</p> http://stackoverflow.com/questions/838318/how-to-keep-asp-net-assemblies-in-appdomain-alive/838348#838348 4 Answer by Rex M for How to keep ASP.NET assemblies in AppDomain alive? Rex M 2009-05-08T05:23:23Z 2009-07-04T04:04:24Z <p>In <strong>IIS 6</strong>, go to the Application Pools section, and right-click > Properties on the pool which hosts the ASP.NET application in question. Go to the Performance tab and uncheck "Shutdown worker processes after being idle for:"</p> <p>In <strong>IIS 7</strong>, go to the Connections pane and find Application Pools, and select Advanced Settings for the pool which hosts your application. Find the "Idle Timeout" property and set it to "0" (this disables it).</p> <p>The default is 20 minutes of inactivity. By unchecking the box, once your <a href="http://www.odetocode.com/articles/305.aspx" rel="nofollow">AppDomain</a> is loaded by the <a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/29f53968-0115-451f-b26d-5ad58d87b5d1.mspx?mfr=true" rel="nofollow">worker process</a>, it will never die (unless you kill the process or something of course). By default, IIS will <a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/24e3c22e-79a9-4f07-a407-dbd0e7f35432.mspx?mfr=true" rel="nofollow">recycle the process</a> when it reaches some limit, such as a memory cap, but it will also start a new one and "phase over" all incoming requests until the old one is unused, so as to minimize disruption.</p> <p>I've also written a small c# class which will <a href="http://www.rexmorgan.net/journal/fixing%5Faspnet%5Fldquokeep" rel="nofollow">keep your ASP.NET application alive</a> under normal circumstances. Since it runs within the application, obviously it can't stop IIS or anything else from explicitly killing the process, but it will keep the application "hot", e.g. the app will never go idle long enough for IIS to decide to shut it off.</p> <p>If you do not have direct control over your IIS configuration (shared host, for example) your best bet is to have a small application running on a separate system - say, an always-on workstation - which hits your site every x minutes to keep the application pool from timing out. Nothing fancy - a simple <a href="http://msdn.microsoft.com/en-us/library/system.net.webrequest.aspx" rel="nofollow">WebRequest</a> and a while() loop in a console application will do.</p> http://stackoverflow.com/questions/838318/how-to-keep-asp-net-assemblies-in-appdomain-alive/1501086#1501086 -1 Answer by webster for How to keep ASP.NET assemblies in AppDomain alive? webster 2009-09-30T22:55:02Z 2009-09-30T22:55:02Z <blockquote> <p>Blockquote a simple WebRequest and a while() loop in a console application will do.</p> </blockquote> <p>I've tried the WebRequest solution and I keep getting a 500 internal error. If I use my browser on the same URL, however, this is not the case; the page just takes a long time to load.</p>