show/hide this revision's text 2 tried to make title a little more accurate

How do I to keep my Assemblies always loaded ASP.NET assemblies in memory AppDomain alive?

Hi,

Scenario: I've an n-Tier enterprise ASP.NET application deployed using Web Deployment Projects. All tiers produce independant independent assemblies that is consumed by the ASP.NET application.

Problem: When I run the app. for the first time after deployment it takes lot of time to load dependant 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.

I'm looking for a solution that enables me to keep my assemblies loaded into memory persistantly persistently overriding the volatile nature of assemblies towards memory residency.

Or any other solution that lets my users happily use the app resolving the mentioned problem.

Thanks.

show/hide this revision's text 1

How do I keep my Assemblies always loaded in memory ?

Hi,

Scenario: I've an n-Tier enterprise ASP.NET application deployed using Web Deployment Projects. All tiers produce independant assemblies that is consumed by the ASP.NET application.

Problem: When I run the app. for the first time after deployment it takes lot of time to load dependant 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.

I'm looking for a solution that enables me to keep my assemblies loaded into memory persistantly overriding the volatile nature of assemblies towards memory residency.

Or any other solution that lets my users happily use the app resolving the mentioned problem.

Thanks.