我使用缓存来处理数据,我需要在数据发生变化时删除密钥缓存。我想使用cacheDependency但它不起作用。我的代码是:
HttpContext.Current.Cache.Insert("Key", cacheKey);
var keys = new[] {"Key"};
HttpContext.Current.Cache.Insert(cacheKey, item, new CacheDependency(null, keys),
DateTime.Now.AddMinutes(minutesToExpire), Cache.NoSlidingExpiration);
你能帮帮我吗?
谢谢!