Tagged Questions
4
votes
4answers
400 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 ...
2
votes
1answer
652 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
88 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 ...
1
vote
2answers
452 views
cache problem in asp.net with c#
I am using the fileuplaod control to upload the images. For this I used to stored it in the cache
for 2 hours in byte format and show this image using the HttpContext in the .ashx file. For some ...
0
votes
2answers
67 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?
0
votes
1answer
130 views
httpcache problem
I have a repository that pulls from both db, and sometimes a cache.
To implement this, I created an interface ICacheWrapper that lets the repo use HttpRuntime.Cache, AppFabric, whatever. Concrete ...