gpt4 book ai didi

asp.net-mvc - asp.net mvc 输出缓存,我可以缓存不同用户不同的结果吗?

转载 作者:行者123 更新时间:2023-12-02 03:40:26 25 4
gpt4 key购买 nike

我读过一些不同的东西,听起来输出缓存不会为每个用户缓存不同的结果副本。那么如果用户 A 有 3 个菜单,而用户 B 只能访问其中 1 个菜单,那么缓存 View 结果会显示所有 3 个菜单吗?

如何为每个用户缓存内容,使其不被共享?

谢谢!

最佳答案

使用 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/

关于asp.net-mvc - asp.net mvc 输出缓存,我可以缓存不同用户不同的结果吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3425006/

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