Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
677 views

Cache.Add absolute expiration - UTC based or not?

The examples for Cache.Add uses DateTime.Now.Add to compute the expiration, i.e. it passes: DateTime.Now.AddSeconds(60) as the value of the absoluteExpiration parameter. I'd have thought that ...
1
vote
2answers
343 views

System.Web.Caching.Cache doesn't seem to refresh itself on time ?

I am using System.Web.Caching.Cache in an assembly used by my website. I have set some key expiration (absolute expiration) to be 10 seconds (just for debugging). I have also set a callback upon key ...
1
vote
1answer
1k views

System.Web.Caching.Cache.NoSlidingExpiration in asp.net c#

Please tell me about System.Web.Caching.Cache.NoSlidingExpiration in ASP.NET.
0
votes
0answers
99 views

.NET Web Caching

I am looking to only download a new image from server if the image changes with an application and looking for some help. I know I can roll my own class that could check the timestamp of the header ...
0
votes
1answer
707 views

How to check if item exists in Cache (System.Web.Cache)?

Hi, To check if the key already exists in cache I shoulde be able to do the following : if(Cache["MyKey"] != null) This does however not work? If I create an instance from the Cache class i will ...
0
votes
2answers
122 views

Clever caching using generics?

Are there any clever layers out there to sit on top of the System.Web.Caching.Cache class to handle simple scenarios to fetch items using generics. I'd like to maybe provide a delegate function to ...