我已经阅读了一些不同的东西,听起来输出缓存不会为每个用户缓存不同的结果副本。因此,如果用户A有3个菜单而用户B只能访问其中1个菜单,那么缓存查看结果会显示全部3个?
我如何为每个用户缓存内容以使其不被共享?
谢谢!
答案 0 :(得分:4)
使用VaryByCustom并重新定义HttpApplication.GetVaryByCustomString:
public virtual string GetVaryByCustomString(
HttpContext context,
string custom
)
{
//Return a value unique per user
//Change depending on the authentication of your site (f.e. make use of Session)
return context.User.Identity.Name;
}
http://msdn.microsoft.com/en-us/library/system.web.httpapplication.getvarybycustomstring.aspx http://asp.net-tutorials.com/caching/more-output-cache/
答案 1 :(得分:1)
一种解决方案是传递带有菜单数量的参数。然后将outputcache配置为通过除此之外的所有参数进行缓存。
此外,您可以将输出缓存配置为仅在客户端上缓存,而不是在服务器上缓存。根据您的方案,它可能很有用。
答案 2 :(得分:0)
您始终可以在asp.net会话中缓存用户特定信息。