查询HttpContext.Current.Cache中的项目

时间:2011-09-08 10:15:29

标签: c# asp.net caching

将项添加到此缓存中非常简单:

HttpContext.Current.Cache.Add(
    string key,
    Object value,
    CacheDependency dependencies,
    DateTime absoluteExpiration,
    TimeSpan slidingExpiration,
    CacheItemPriority priority,
    CacheItemRemovedCallback onRemoveCallback
    );

如果我可以查询缓存并检索每个项目的到期日期,那就太棒了。

这可能吗?据我所见,我只能检索密钥名称。

参考:http://msdn.microsoft.com/en-us/library/system.web.caching.cache.add.aspx

1 个答案:

答案 0 :(得分:5)

是的,您可以使用Reflection实现。

foreach (var t in Cache)
        {
            System.Collections.DictionaryEntry entry = (System.Collections.DictionaryEntry)t;
            object key = entry.Key;
            object obj = Cache.GetType().GetMethod("Get", BindingFlags.Instance | BindingFlags.NonPublic).Invoke(Cache, new object[] { key, 1 });
            PropertyInfo prop = obj.GetType().GetProperty("UtcExpires", BindingFlags.NonPublic | BindingFlags.Instance);
            DateTime expire = (DateTime)prop.GetValue(obj, null);
            Response.Write("<br/>" + key + " : " + expire);
        }