I would like to ask if System.Web.HttpContext.Current.Cache is per User like the Sessions or if it is per application. On which circumstances is nice to use Cache?.
I would like to ask if System.Web.HttpContext.Current.Cache is per User like the Sessions or
Share
HttpContext.Cache Property – MSDN
For your question.
Keep that information in Cache which will be shared by multiple users and (usually) if its
readonly. For example keeping lookup values in cache. You may see:Caching Data in an ASP.NET Web Pages Site for Better Performance