Tagged Questions
17
votes
3answers
6k 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
626 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 ...
8
votes
3answers
3k views
What's the difference between the HttpRuntime Cache and the HttpContext Cache?
I know there is a very similar question here but I was hoping to get a better explination. Why would I ever use HttpContext.Cache instead of HttpRuntime.Cache if the HttpContext really uses the ...
3
votes
2answers
338 views
Can I share HttpRuntime.Cache between applications?
I have a website setup like this:
/Web --this is the client facing
site /Web/Admin --this is the
backend system and is setup as a
Virtual Application
I'm using HttpRuntime.Cache for ...
2
votes
1answer
143 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
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
124 views
Value stored in session depends on value in HttpRuntime cache
I have data common for all users stored in HttpRuntime.Cache.
Then I have some user related data stored in Session.
HttpRuntime.Cache has CacheDependency mechanism, which can be used to define ...
1
vote
2answers
616 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
1
vote
1answer
537 views
ASP.NET: HttpRuntime.Cache getting flushed when saving WebConfigurationManager — Is this a bug?
Recently, I've been experimenting with caching objects with HttpRuntime.Cache and I was generally under the impression that if I "added" something to the cache like this:
...
0
votes
2answers
46 views
HttpRuntime.Cache how to discard
I have a problem with an asp.net site (4.0 framework) I would like to understand how to properly discard of values in HttpRuntime.Cache between page requests. I am storing values for pagination , ...
0
votes
3answers
134 views
Is the ASP.NET Cache independent for each host header set in IIS7
I have a site that dynamically loads website contents based on domain host name, served from IIS7. All of the domains share a cached collection of settings. The settings are being flushed from the ...
0
votes
1answer
149 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 ...