views:

516

answers:

2

Random quick question.

The System.Web.Cache class, at what level is the information stored? On a per session level or whole application level?

Thanks

+2  A: 

An instance of the cache is per app domain

redsquare
+1  A: 

AFAIK at the application level.

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

From the page:

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