Tagged Questions

4
votes
4answers
436 views

Application_End() cannot access cache through HttpContext.Current.Cache[key]

I want to be able to maintain certain objects between application restarts. To do that, I want to write specific cached items out to disk in Global.asax Application_End() function and re-load them ...
3
votes
1answer
76 views

how long, by default does stuff stay in httpcache if i don't put an explicit expiration?

i have the following code to cache some expensive code. private MyViewModel GetVM(Params myParams) { string cacheKey = myParams.runDate.ToString(); var cacheResults = ...
2
votes
1answer
682 views

HttpContext.Cache Physical Memory Usage

Is there any way to find the number of bytes of memory that are currently in the HttpContext.Cache? I've found where you can get the physical memory limit using EffectivePrivateBytesLimit or ...
1
vote
2answers
93 views

what techniques should be used to handle objects in asp.net Cache to prevent problems from multiple asp.net worker threads access?

since asp.net contains multiple threads that are executing at the same time. so if 2 threads access an object (simple or complex) that i got from the the asp.net httpcontext Cache. can't this lead to ...
0
votes
2answers
77 views

How can I see what's in my HttpContext.Cache

Are there any good tools to see how much data (or even better the values of that data) is in my HttpContext.Cache?