如何使用 ASP.NET MVC 4.0 DonutOutputCache VaryByCustom使缓存失效
本文关键字:VaryByCustom DonutOutputCache 缓存 失效 何使用 ASP NET MVC | 更新日期: 2023-09-27 18:34:12
我正在为我的 ASP.NET 应用程序使用DevTrends.MvcDonutCaching包,它工作得很好。我目前遇到的一个问题是使我为子操作设置的 VaryByCustom 缓存无效。
这是我为VaryByCustom设置提供的一些代码:
public override string GetVaryByCustomString(HttpContext context, string arg)
{
if (arg == "userlogin" && context.User.Identity.IsAuthenticated)
{
return "UserLogin=" + context.User.Identity.Name;
}
return base.GetVaryByCustomString(context, arg);
}
这就是我的动作的装饰方式:
[Authorize]
[DonutOutputCache(Duration = 3600, VaryByCustom = "userlogin")]
public ActionResult UserProfile()
{ ... }
这就是我尝试清理该缓存的方式(我也尝试过没有任何参数和"userlogin",但这些都不起作用:
OutputCacheManager om = new OutputCacheManager();
om.RemoveItem("Customer", "UserProfile", new { UserLogin = User.Identity.Name });
这是剃刀视图部分:
<div id="cabinetMain">
@{Html.RenderAction("UserProfile", true);}
</div>
任何帮助将不胜感激。
谢谢。
对
我有用的解决方案是使用OutputCacheManager的RemoveItems方法而不是RemoveItem。这有点棘手,因为需要使用RouteValueDictionary。下面对我有用的示例:
OutputCacheManager om = new OutputCacheManager();
RouteValueDictionary rv = new RouteValueDictionary();
rv.Add("userlogin", User.Identity.Name);
om.RemoveItems("Customer", "UserProfile", rv);