我的以下代码有问题。我有以下代码,

            if (HttpRuntime.Cache[cacheKey] == null)
            {
                AddTask(cacheKey, JsonConvert.SerializeObject(result), 60 * 30);
            }
            r = JsonConvert.DeserializeObject<Result>(HttpRuntime.Cache[cacheKey].ToString());
            HttpRuntime.Cache[cacheKey] = JsonConvert.SerializeObject(r);


           private static void AddTask(string key, string value, int seconds)
            {
                HttpRuntime.Cache.Insert(key, value, null,
                    DateTime.Now.AddSeconds(10), Cache.NoSlidingExpiration,
                    CacheItemPriority.NotRemovable, new CacheItemRemovedCallback(CacheItemRemoved));
            }

    public static void CacheItemRemoved(string k, object v, CacheItemRemovedReason r)
    {
    }


我正在做的只是简单地添加和更新(如果存在)缓存。然后10秒钟后,我想检查一下。但是我的CacheItemRemoved回调从未调用过。

最佳答案

每当使用时更新缓存

HttpRuntime.Cache[cacheKey] = JsonConvert.SerializeObject(r);


然后将缓存时间重置为默认时间。现在我不再使用字符串,而是使用对象实例而不更新cache。

notification = HttpRuntime.Cache[cacheKey] as Notification;
HttpRuntime.Cache.Insert(key, notificationResult , null,
                DateTime.Now.AddSeconds(10), Cache.NoSlidingExpiration,
                CacheItemPriority.NotRemovable, new CacheItemRemovedCallback(CacheItemRemoved));

关于c# - HttpRuntime.Cache没有过期?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37390203/

10-13 01:39