18

我有一个用户特定的仪表板。仪表板只会每天更改,我想使用MVC's OutputCache. 有没有办法配置每个用户的缓存并在请求是新的一天时过期?

我对此进行了研究,发现您可以扩展该OutputCache属性以动态设置您的持续时间,但是如何为每个用户配置它?

提前致谢

4

2 回答 2

28

在你的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让您编写一个自定义方法来确定是否会有 Cache hit/miss

于 2013-06-13T07:30:02.153 回答
2

在 web.config 中试试这个,

<system.web>
 ...........
 ...........
 <caching>
  <outputCacheSettings>
    <outputCacheProfiles>
      <add name="UserCache" duration="1440" varyByParam="UserID" enabled="true" location="Client"/>
    </outputCacheProfiles>
  </outputCacheSettings>
</caching>
于 2013-06-13T07:18:13.373 回答