Tagged Questions
The httpruntime.cache tag has no wiki summary.
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 ...
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 ...
3
votes
2answers
320 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
123 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
290 views
Sharepoint Timer Job and access to the HTTPRuntime Cache object
I am planning to create a Sharepoint Timer Job and configure it to run on all of our farm web front end machines.
The timer job will read data from the SP SQL Server instance and hopefully update it ...
2
votes
1answer
167 views
is cacheitemremovedcallback of HttpRuntime.Cache thread safe?
i use HttpRuntime.Cache.Insert to insert data into cache.
i have the function 'onremove' as the cacheitemremovedcallback - when the cache expires (after 15 minutes) it releases data in cache and calls ...
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
1answer
96 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
196 views
Does Azure have support for HttpRuntime.Cache for an ASP.Net application?
My ASP.Net application uses HTTPRuntime.Cache. If I host it on Azure:
Will there be any compilation errors assuming HTTPRuntime.Cache is not supported on Azure
There will not be any compliation ...
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
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
1answer
586 views
Sharing an HttpRuntime.Cache across two IIS applications
I have two ASP.NET 2.0 applications in IIS; a public booking system and an admin system to manage prices. There is a shared DLL project that accesses the database, used by both applications.
To ...
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
2answers
42 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
122 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
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
2answers
92 views
Determine the age of an object in the cache
I'd like to be able to determine the age of an item in the HttpRuntime cache and was wondering if there was any way to do this. Basically what I in my class is parse a third party XML file into an ...
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 ...