作为DonutCache的替代方案,有没有人看到以下输出缓存方法的任何问题。它似乎可以在不暴露任何用户数据的情况下工作,并根据时间戳测试正确地为每个人缓存页面,这是我最关心的问题。我只是想在我的现场网站上实现之前覆盖我的基地。
在Glogal.asax.cs
中public override string GetVaryByCustomString(HttpContext context, string arg)
{
if (arg == "User")
{
if (context.User.Identity.Name != "")
{
return "User=" + context.User.Identity.Name;
}
else
{
return "User=Guest";
}
}
return base.GetVaryByCustomString(context, arg);
}
在Web.config中
<caching>
<outputCacheSettings>
<outputCacheProfiles>
<add name="HomePage" duration="86400" varyByParam="*" varyByCustom="User" location="Server" />
</outputCacheProfiles>
</outputCacheSettings>
</caching>
* n控制器
[OutputCache(CacheProfile = "HomePage")]
public ActionResult Index()
{
return View();
}
参考解决方案:Output cache per User
答案 0 :(得分:0)
您的方法依赖于用户的名称(通常映射到其给定名称)对所有用户都是唯一的,并且没有实际用户具有名称“Guest”。
更好的方法是将其映射到该用户的应用程序内部标识。
if (arg == "User")
{
if (context.User.Identity.IsAuthenticated)
{
return $"User={context.User.Identity.GetUserId()}";
}
else
{
return $"User={int.MinValue}";
}
}