Questions tagged [asp.net-caching]

40 questions
0
votes
0 answers

CACHING using asp.net

I am using vb.net and asp.net. My web application is used by multiple parallel users . I have a table named "Tracked_Table" I want to cache this table for 10 seconds and after 10 seconds, i wanted to reload the cache again with the latest…
Pravin Kumar
  • 693
  • 1
  • 9
  • 35
0
votes
2 answers

Should I use session or cache in this scenario? Or something else?

I have to create a mechanism to store and read preferences (controls default values and settings) per user. I have a problem related to network traffic, as the database can be accessed over the internet and the application server sometimes is…
juliano.net
  • 7,982
  • 13
  • 70
  • 164
0
votes
1 answer

browser caching feature vs asp.net caching feature

by default browsers will cache the static files like image, js and css files. And it also cache http get request. If this feature is already there, then why we need asp.net output caching feature? Thanks.
Dev
  • 309
  • 1
  • 8
  • 24
0
votes
1 answer

Get cache elements with key

In ASP.NET, we have the IDictionaryEnumerator enumerator = Cache.GetEnumerator(); to get the elements of all cache objecs. Do we have any method to get the cache objects that start with particular string. Something like IDictionaryEnumerator…
renuka
  • 549
  • 2
  • 5
  • 11
0
votes
0 answers

asp.net caching by ref issue

I am working with C# and using the asp.net in proc caching framework to cache my large objects. So, I place the object in to .net caching, and look for it in multiple places in my code. After I retrieve the object from cache, I modify it eg. alter…
amateur
  • 43,371
  • 65
  • 192
  • 320
0
votes
2 answers

How to deleted cache items at a particular time daily

I want that the items in the cached element should be deleted once daily at a particular time say at 11:59:59 pm. I know that there is a property absoluteExpiration in cache which can be use for certain time period. I am using the following code to…
शेखर
  • 17,412
  • 13
  • 61
  • 117
0
votes
2 answers

Which .Net caching technique is needed here

I have a WCF web service in .Net 4.0. I am calling another web service from it and that is sending me an XML object (arond 50 KB) as response. The response object is not likely to get changed frequently. So I should be choosing a caching technique…
James
  • 2,136
  • 3
  • 23
  • 42
0
votes
1 answer

ASP.NET data caching vs application memory

My ASP.NET application need to use 40K lines of pairs. with every client request, the application search the right key and return the proper value. should I just use a Dictionary or use ASP.NET caching solution? what…
socksocket
  • 4,271
  • 11
  • 45
  • 70
-1
votes
3 answers

What is the best state management to store user search criterias

What is the best state management to store user search criteria on different pages in ASP.NET MVC? Session: stored on the server and may consume its RAM Cookies: small size local storage: it is javascript aside, but my codes are ready to cache data…
-2
votes
2 answers

Implement second level cache in ASP.Net

Is there any way to use caching in ASP.Net except SQL Server second level cache. As it is the first time to work with caching I want any way with an example. I have found that NHibernate implements this but we are using .netTiers as an application…
1 2
3