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 ...
8
votes
3answers
2k 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 ...
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
129 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
1answer
97 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
1answer
512 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: ...
1
vote
2answers
1k views

Has using the HttpRuntime.Cache changed in ASP.NET MVC?

So, I was looking over my standard cache utility when preparing to unit test a controller and thought, hey, is accessing the HttpRuntime.Cache directly considered harmful in MVC? I wrap the cache in ...
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 ...
0
votes
1answer
644 views

WCF Service hosted in IIS - Can't seem to cache or retain state?

I'm trying to cache some application data that only needs to be instantiated when the application starts. I've tried using HttpRuntime.Cache, creating a static object that is instantiated only when ...