Tagged Questions
17
votes
3answers
5k views
HttpRuntime.Cache[] vs Application[]
I know that most people recommend using HttpRuntime.Cache because it has more flexibility... etc. But what if you want the object to persist in the cache for the life of the application? Is there any ...
11
votes
1answer
613 views
Cache key causes error “Negating the minimum value of a twos complement number is invalid.”
This is one of the strangest errors I've ever seen.
I'm doing a very simple call to return values from the HttpRuntime cache. The call is:
return HttpContext.Current.Cache[cacheKey];
If it ...
2
votes
1answer
122 views
50GB HttpRuntime.Cache Persistence Possible?
We have an ASP.NET 4.0 application that draws from a database a complex data structure that takes over 12 hours to push into an in memory data structure (that is later stored in HttpRuntime.Cache). ...
2
votes
4answers
4k views
HttpRuntime.Cache best practices
In the past I have put a lock around accessing the HttpRuntime.Cache mechanism.
I'm not sure if I had really researched the issue in the past and blindy surrounded it with a lock.
Do you think this ...
2
votes
2answers
1k views
How can I get the size of an object in the HttpRuntime.Cache?
I am currently storing many different types of objects in the ASP.NET HttpRuntime.Cache and I was wondering if there is a way to figure out how big each object is?
1
vote
1answer
127 views
Should I use HttpRuntime.Cache?
I'm a beginner in asp.net, and have a few question of Cache:
HttpRuntime.Cache only provides severals methods and I think I'm able to implement these methods with Dictionary by myself.
If ...
1
vote
2answers
563 views
HttpRuntime.Cache.Remove doesn't remove cache
I am trying to remove the cache using the HttpRuntime.Cache.Remove(key) but invain. I wonder what are the best practices for using HttpRuntime.Cache.
Regards
0
votes
1answer
135 views
How to find out how much memory is currently consumed by cache?
I'd like to modify the value of my Sliding Expiration time span based on how much memory is available. If the site's traffic is high at any point in time, more data will be added to the cache than ...