我想在我的应用程序中使用缓存,但我返回的数据特定于登录用户。当我需要因用户而异时,我无法使用任何现成的缓存规则。
有人可以指出我在创建自定义缓存属性方面的正确方向。从控制器我可以从Thread.CurrentPrincipal.Identity;
或我在控制器构造函数_user
中初始化的私有控制器成员访问用户
谢谢。
答案 0 :(得分:10)
您可以使用VaryByCustom。在Global.asax中覆盖GetVaryByCustomString
方法:
public override string GetVaryByCustomString(HttpContext context, string arg)
{
if (arg == "IsLoggedIn")
{
if (context.Request.Cookies["anon"] != null)
{
if (context.Request.Cookies["anon"].Value == "false")
{
return "auth";
}
else
{
return "anon";
}
}
else
{
return "anon";
}
}
else
{
return base.GetVaryByCustomString(context, arg);
}
}
然后使用OutputCache属性:
[OutputCache(CacheProfile = "MyProfile")]
public ActionResult Index()
{
return View();
}
并在web.config中:
<caching>
<outputcachesettings>
<outputcacheprofiles>
<clear />
<add varybycustom="IsLoggedIn" varybyparam="*" duration="86400" name="MyProfile" />
</outputcacheprofiles>
</outputcachesettings>
</caching>
答案 1 :(得分:1)
Authorize Attribute对于授权用户和未授权用户的缓存有一些有趣的事情。您可以提取它的逻辑并将其修改为按授权用户进行缓存,而不仅仅是“用户已获得授权”。
看看这篇文章:
Can someone explain this block of ASP.NET MVC code to me, please?
答案 2 :(得分:0)
您应该使用OutputCache.VaryByCustom Property指定自定义变量字符串。要使用它,您应该覆盖Global.asax
中的方法public override string GetVaryByCustomString(HttpContext context, string arg)
{
if(arg.ToLower() == "currentuser")
{
//return UserName;
}
return base.GetVaryByCustomString(context, arg);
}