How to prevent ASP.Application to expire

  • Thread starter Thread starter Patrick
  • Start date Start date
P

Patrick

To speed up my asp.net application I have stored data in the
application cache.
The problem is that when all sessions are expired the Appication will
also expire after some time and so lose my cache.

Is there a configurationsetting (IIS or ASP.Net) where I can set the
expirationtime of the application.

Thanks in advance

Patrick
 
Bad idea IMO. You should be prepared to handle a cache miss and reload the
information in your cache as needed. Not sure but AFAIK under high memory
pressure you could have also some items removed. BTW how are the items
loaded then ?

Patrice
 
Back
Top