配置每个用户 mvc 的输出缓存
本文关键字:输出 缓存 mvc 用户 配置 | 更新日期: 2023-09-27 18:18:04
我有一个特定于用户的仪表板。 仪表板只会每天更改,我想使用MVC's
OutputCache
. 有没有办法配置每个用户的缓存并在请求是新的一天时过期?
我对此进行了研究,发现您可以扩展 OutputCache
属性以动态设置持续时间,但是我如何为每个用户配置它?
提前致谢
在你的Web.config
中:
<caching>
<outputCacheSettings>
<outputCacheProfiles>
<add name="Dashboard" duration="86400" varyByParam="*" varyByCustom="User" location="Server" />
</outputCacheProfiles>
</outputCacheSettings>
</caching>
在您的Controller
/Action
:
[OutputCache(CacheProfile="Dashboard")]
public class DashboardController { ...}
然后在您的Global.asax
:
//string arg filled with the value of "varyByCustom" in your web.config
public override string GetVaryByCustomString(HttpContext context, string arg)
{
if (arg == "User")
{
// depends on your authentication mechanism
return "User=" + context.User.Identity.Name;
//return "User=" + context.Session.SessionID;
}
return base.GetVaryByCustomString(context, arg);
}
从本质上讲,GetVaryByCustomString
允许您编写自定义方法来确定是否存在缓存hit/miss
。
在web.config中试试这个,
<system.web>
...........
...........
<caching>
<outputCacheSettings>
<outputCacheProfiles>
<add name="UserCache" duration="1440" varyByParam="UserID" enabled="true" location="Client"/>
</outputCacheProfiles>
</outputCacheSettings>
</caching>