使用变量时,DonutOutputCache不清除缓存

时间:2012-01-26 16:18:02

标签: asp.net-mvc caching asp.net-caching asp.net-cache

我有一个ActionResult,我希望它基于id

进行缓存
[DonutOutputCache(Duration = 3600, VaryByParam = "product_Id")]
public ActionResult ProductInfo(Guid product_Id)
{
    System.Threading.Thread.Sleep(3000);
    return PartialView(_repository.GetProductInfo(product_Id));
}

它运作良好。

当我想删除缓存时,我使用这种语法

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult SaveDetails(DetailsModel model)
{
    try
    {
        // save action here, then remove cache

        var cacheManager = new OutputCacheManager();
        cacheManager.RemoveItem("Common", "ProductInfo", new { product_Id = model.Product_Id });

        return Json(new { hasError = false }, JsonRequestBehavior.AllowGet);
    }
    catch (Exception ex)
    {
        return Json(new { hasError = true, message = ex.Message }, JsonRequestBehavior.AllowGet);
    }
}

OutputCacheManager()。当我指定参数时,RemoveItem不起作用。

如果我只是使用

,它会起作用
cacheManager.RemoveItem("Common", "ProductInfo");

我做错了什么?

1 个答案:

答案 0 :(得分:3)

我找到了解决方案

似乎参数不能包含大写字母。这是一个已修复的已知错误。

将product_Id更改为product_id,它将起作用。