gpt4 book ai didi

c# - 如何在 ASP.NET MVC 中基于每个用户删除输出缓存?

转载 作者:太空狗 更新时间:2023-10-29 23:48:16 24 4
gpt4 key购买 nike

我正在使用 VaryByCustom 在每个浏览器和每个用户的基础上创建输出缓存:

[OutputCache(Duration = 6000, VaryByParam = "*", VaryByCustom="browser;userName")]

(我已经重写了 GetVaryByCustomString() 来完成这项工作。)

如果可能,我需要能够删除单个用户的输出缓存,而不会使不同用户的输出缓存失效。我读过有关 HttpResponse.RemoveOutputCacheItem() 的内容,但它的工作原理是根据路径删除输出缓存。有没有什么方法可以基于 VaryByCustom 字符串来做到这一点?

最佳答案

您可以通过覆盖 HttpApplication.GetVaryByCustomString 并检查 HttpContext.Current 来利用 [OutputCache] 中的 VaryByCustom 属性。 User.IsAuthenticated.

这是我将在 Global.asax.cs 文件中创建的内容:

public override string GetVaryByCustomString(HttpContext context, string custom)
{
if (custom == "UserName")
{
if (context.Request.IsAuthenticated)
{
return context.User.Identity.Name;
}
return null;
}

return base.GetVaryByCustomString(context, custom);
}

然后在 OutputCache 属性中使用它:

[OutputCache(Duration = 10, VaryByParam = "none", VaryByCustom = "UserName")]
public ActionResult Profiles()
{
//...
}

但请注意,在这种情况下,用户名应该是不可变的!

关于c# - 如何在 ASP.NET MVC 中基于每个用户删除输出缓存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5186327/

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