我想使用VaryByCustom属性使缓存无效。 以下代码用于缓存设置。
public override string GetVaryByCustomString(HttpContext context, string arg)
{
if (!string.IsNullOrWhiteSpace(arg))
{
if (context.User.Identity.Name != null)
{
return context.User.Identity.Name;
}
}
return base.GetVaryByCustomString(context, arg);
}
答案 0 :(得分:0)
你是这样用的吗?
确保使用属性
装饰您的操作 [OutputCache(Duration = 3600, VaryByParam = "*", Location = OutputCacheLocation.Server, VaryByCustom =
"YourStringThatIsArgParamInYourGlobalAsaxMethod")]
public ActionResult MyActionOnTheController(string myParam)
{
}