是否有任何工具可用于查看HttpRunTime缓存中的缓存数据..?
我们有一个Asp.Net应用程序,它将数据缓存到HttpRuntime Cache中。给定的默认值为60秒,但后来更改为5分钟。但感觉缓存的数据在5分钟之前就会刷新。不知道底下发生了什么。
有没有可用的工具或我们如何看到HttpRunTime Cache中缓存的数据....有效期...?
以下代码用于添加要缓存的项目。
public static void Add(string pName, object pValue)
{
int cacheExpiry= int.TryParse(System.Configuration.ConfigurationManager.AppSettings["CacheExpirationInSec"], out cacheExpiry)?cacheExpiry:60;
System.Web.HttpRuntime.Cache.Add(pName, pValue, null, DateTime.Now.AddSeconds(cacheExpiry), TimeSpan.Zero, System.Web.Caching.CacheItemPriority.High, null);
}
谢谢。
答案 0 :(得分:17)
Cache类支持IDictionaryEnumerator枚举缓存中的所有键和值。
IDictionaryEnumerator enumerator = System.Web.HttpRuntime.Cache.GetEnumerator();
while (enumerator.MoveNext())
{
string key = (string)enumerator.Key;
object value = enumerator.Value;
...
}
但我不相信有任何官方方式可以访问元数据,例如到期时间。
答案 1 :(得分:6)
Cache类支持IDictionaryEnumerator枚举缓存中的所有键和值。以下代码是如何从缓存中删除每个密钥的示例:
List<string> keys = new List<string>();
// retrieve application Cache enumerator
IDictionaryEnumerator enumerator = System.Web.HttpRuntime.Cache.GetEnumerator();
// copy all keys that currently exist in Cache
while (enumerator.MoveNext())
{
keys.Add(enumerator.Key.ToString());
}
// delete every key from cache
for (int i = 0; i < keys.Count; i++)
{
HttpRuntime.Cache.Remove(keys[i]);
}