gpt4 book ai didi

c# - 使用 VaryByCustom 使缓存无效

转载 作者:太空狗 更新时间:2023-10-29 23:50:34 25 4
gpt4 key购买 nike

我想使用 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);
}

最佳答案

你是这样使用的吗:

确保你用属性装饰你的 Action :

 [OutputCache(Duration = 3600, VaryByParam = "*", Location = OutputCacheLocation.Server, VaryByCustom = 
"YourStringThatIsArgParamInYourGlobalAsaxMethod")]
public ActionResult MyActionOnTheController(string myParam)
{
}

关于c# - 使用 VaryByCustom 使缓存无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30996628/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com