1
vote
1answer
105 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 …
0
votes
1answer
149 views
WCF Service hosted in IIS - Can’t seem to cache or retain state?
Hello,
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 …
2
votes
3answers
391 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 …
0
votes
2answers
284 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 …
5
votes
3answers
845 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 …
1
vote
2answers
371 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 …
1
vote
3answers
327 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?
