Tagged Questions

1
vote
3answers
56 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 h …
0
votes
2answers
66 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 del …