httpruntime.cache Questions
4
Solved
I want to store null for some of the keys in HttpRuntime.Cache as I dont want to again go to Database to find that there is no entry for that key.
So first time, it goes to database and fills the ...
Gaullist asked 22/3, 2012 at 10:39
2
Solved
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 im...
Puke asked 7/8, 2009 at 10:49
1
Solved
Is it possible to retrieve HttpRuntime.Cache from another application?
i am having two applications ,
for example App-A, App-B
in App-A i am inserting values to cache
HttpRuntime.Cache.Insert(s...
Scion asked 15/10, 2013 at 15:16
2
Solved
Is there any tool available for viewing cached data in HttpRunTime cache..? We have an Asp.Net application which is caching data into HttpRuntime Cache. Default value given was 60 seconds, but late...
Seaway asked 6/6, 2013 at 7:28
3
Solved
I am using a HttpRuntime.Cache to store a list of objects that will be accessing frequently across sessions.
I use the following line of code to get the item from the cache:
List<chartData_Ty...
Apophyge asked 24/9, 2012 at 5:19
1
Solved
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 HttpRun...
Roentgenogram asked 11/11, 2011 at 10:8
4
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 thi...
Techno asked 16/4, 2009 at 3:32
1
Solved
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:
HttpRuntime.Cache.Insert(...
Unanimous asked 19/10, 2010 at 21:34
1
Solved
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 retu...
Housing asked 1/9, 2010 at 1:57
3
Solved
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 Htt...
Tatianna asked 10/7, 2009 at 11:17
3
Solved
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 a...
Warmhearted asked 28/11, 2008 at 21:4
2
Solved
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?
Vocative asked 28/11, 2008 at 20:30
1
© 2022 - 2024 — McMap. All rights reserved.