Tagged Questions
8
votes
3answers
678 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
344 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
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 ...