System.Web.Cache, session level, or application level

Random quick question.

The System.Web.Cache class, at what level is the information stored? At the session level or the entire application level?

thanks

+6
caching
source share
2 answers

AFAIK at the application level.

http://msdn.microsoft.com/en-us/library/system.web.caching.cache.aspx

On the page:

One instance of this class is created per application domain, and it remains valid as long as the application domain remains active.

+5
source share

Cache Instance for Application Domain

+3
source share

All Articles