为特定控制器操作选择自定义输出缓存提供程

时间:2012-08-05 17:30:25

标签: c# asp.net caching asp.net-mvc-4

我正在尝试实现MongoDB / Memory组合输出缓存提供程序以与MVC4一起使用。这是我最初的实现:

public class CustomOutputCacheProvider : OutputCacheProvider
{
    public override object Get(string key)
    {
        FileLogger.Log(key);
        return null;
    }

    public override object Add(string key, object entry, DateTime utcExpiry)
    {
        return entry;
    }

    public override void Set(string key, object entry, DateTime utcExpiry)
    {
    }

    public override void Remove(string key)
    {
    }
}

我的网络配置条目:

<caching>
  <outputCache defaultProvider="CustomOutputCacheProvider">
    <providers>
      <add name="CustomOutputCacheProvider" type="MyApp.Base.Mvc.CustomOutputCacheProvider" />
    </providers>
  </outputCache>
</caching>

HomeController中的用法:

[OutputCache(Duration = 15)]
public ActionResult Index()
{
    return Content("Home Page");
}

我的问题是,当我检查日志文件中所请求的密钥时,我不仅看到了对主控制器的请求,还看到了所有其他路径:

a2/  <-- should only log this entry
a2/test
a2/images/test/50115c53/1f37e409/4c7ab27d/50115c531f37e4094c7ab27d.jpg
a2/scripts/jquery-1.7.2.min.js

我认为我不应该将CustomOutputCacheProvider设置为Web.Config中的defaultProvider,我无法弄清楚如何指定我想用于特定控制器操作的缓存提供程序。

使用Asp.Net网页,您可以使用页面顶部的<%@ OutputCache Duration="60" VaryByParam="None" providerName="DiskCache" %>来完成它,但对于MVC,我能找到的唯一解决方案是覆盖Global.asax中的HttpApplication.GetOutputCacheProviderName Method

使用[OutputCache]属性是否有更优雅的方法来实现这一目标?

3 个答案:

答案 0 :(得分:7)

  

使用[OutputCache]属性设置OutputCacheProvider是否有更优雅的方法?

我认为答案是否定的(当前mvc4版本没有),因为实现自定义OutputCacheProvider和使用OutputCache属性修饰操作之间没有任何关系。

正如您在Get方法中实现自定义提供程序和日志记录所发现的那样,您会看到对Web服务器发出的每个请求。如果您要从所有操作中删除OutputCache属性,您仍会在日志文件中看到每个请求。我认为这个ASP.NET MVC hits outputcache for every action的答案对于证实这一点非常有用。

由于看起来您只想实现一个输出缓存提供程序,我认为您唯一的选择是设置默认提供程序并继续覆盖GetOutputCacheProviderName实现(如你已经提到了)。也许这样排除所有内容图像脚本

public override string GetOutputCacheProviderName(HttpContext context)
{
    string absolutePath = context.Request.Url.AbsolutePath;

    if (absolutePath.StartsWith("/Content/", StringComparison.CurrentCultureIgnoreCase)
        || absolutePath.StartsWith("/Scripts/", StringComparison.CurrentCultureIgnoreCase)
        || absolutePath.StartsWith("/Images/", StringComparison.CurrentCultureIgnoreCase))
        return base.GetOutputCacheProviderName(context);

    return "CustomOutputCacheProvider";
}

如果您需要实现多个输出缓存提供程序,那么我猜您必须实现一个帮助程序才能为您提供正确的提供程序名称。但是这里有一个例子,我已经为你解决了路由数据; prev例如直接查看网址。

public override string GetOutputCacheProviderName(HttpContext context)
{       
    RouteCollection rc = new RouteCollection();
    MvcApplication.RegisterRoutes(rc);
    RouteData rd = rc.GetRouteData(new HttpContextWrapper(HttpContext.Current));

    if (rd == null)
        return base.GetOutputCacheProviderName(context);

    var controller = rd.Values["controller"].ToString();
    var action = rd.Values["action"].ToString();

    if (controller.Equals("Content", StringComparison.CurrentCultureIgnoreCase) 
        || controller.Equals("Scripts", StringComparison.CurrentCultureIgnoreCase) 
        || controller.Equals("Images", StringComparison.CurrentCultureIgnoreCase))
        return base.GetOutputCacheProviderName(context);

    if (controller.Equals("Account", StringComparison.CurrentCultureIgnoreCase))
        return "AccountOutputCacheProvider";
    if (controller.Equals("Something", StringComparison.CurrentCultureIgnoreCase))
        return controller + "OutputCacheProvider";

    return "CustomOutputCacheProvider";
}

答案 1 :(得分:1)

如果我在哪里,我会尝试编写从OutputCachAttribute继承的MyOutputCachAttribute,它将通过参数选择provider。

答案 2 :(得分:0)

查看MSDN杂志上的这篇文章(源代码和引用MongoDB和Azure作为分布式缓存提供程序的示例)可能会提供一些见解http://msdn.microsoft.com/en-us/magazine/gg650661.aspx

修改

您可以使用CacheProfile设置指定提供程序吗?

http://www.dotnetcurry.com/ShowArticle.aspx?ID=665