7

可能重复:
如何以编程方式清除控制器操作方法的输出缓存

如何清除指定控制器中的缓存?

我尝试使用几种方法:

Response.RemoveOutputCacheItem();
Response.Cache.SetExpires(DateTime.Now);

没有任何效果,它不起作用。:( 可能存在任何方法来获取控制器缓存中的所有键并显式删除它们?我应该在哪个重写方法中执行清除缓存?以及如何做到这一点?

有什么想法吗?

4

3 回答 3

9

你有没有尝试过

[OutputCache(NoStore = true, Duration = 0, VaryByParam = "*")]
public ActionResult DontCacheMeIfYouCan()
{

}

如果这不适合你,那么像 Mark Yu 这样的自定义属性建议。

于 2012-10-08T08:09:23.323 回答
6

试试这个:

把它放在你的模型上:

public class NoCache : ActionFilterAttribute
{
    public override void OnResultExecuting(ResultExecutingContext filterContext)
    {
        filterContext.HttpContext.Response.Cache.SetExpires(DateTime.UtcNow.AddDays(-1));
        filterContext.HttpContext.Response.Cache.SetValidUntilExpires(false);
        filterContext.HttpContext.Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches);
        filterContext.HttpContext.Response.Cache.SetCacheability(HttpCacheability.NoCache);
        filterContext.HttpContext.Response.Cache.SetNoStore();

        base.OnResultExecuting(filterContext);
    }
}

并在您的特定控制器上:例如:

[NoCache]
[Authorize]
public ActionResult Home()
 {
     ////////...
}

来源:原始代码

于 2012-10-08T06:45:42.030 回答
2

试试这个 :

public void ClearApplicationCache()
{
    List<string> keys = new List<string>();

    // retrieve application Cache enumerator
    IDictionaryEnumerator enumerator = 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++)
    {
        Cache.Remove(keys[i]);
    }
}
于 2012-10-08T09:12:23.630 回答