up vote 1 down vote favorite
share [g+] share [fb]

When I update the .dlls in my C# ASP.Net application, the transition is handled gracefully and the users are allowed to finish their requests before the code is switched over to the new code.

My question is do the static variables reset when that is done or do they persist through the update (if of course the static objects themselves aren't updated in the code)?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Yes, they are lost and recreated, the DLL forces the application domain to stop and restart. All cache and other items are re-filled and created as used/needed.

You must look at a persistent store if these values are to be retained for any actual amount of time as your AppDomain can and does restart for many other reasons as well.

link|improve this answer
feedback

Yes, the application is restarted. If you need to persist these values, you might want to look at some sort of out-of-process caching model, such as out of process caching, SQL Server State Management, or a third-party caching solution that lives outside of the application domain.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.