0

我正在使用这个MVCDonutCaching Nuget 包,因为在教程中他们说这可以通过子操作来实现。

这个问题对我不起作用,或者我没有正确理解它。

如果有人知道如何使用标准OutputCache属性删除子缓存,那也没关系!

我已经搜索过这个,但我找不到它。看这里的一个例子:

HomeController(主页)的索引操作:

[AllowAnonymous]
public ActionResult Index()
{
   return View();
}

NewsController 的 ChildAction:

[AllowAnonymous]
[ChildActionOnly]
[DonutOutputCache(Duration = 600, Location = OutputCacheLocation.Server)]
public PartialViewResult LastArticles(int numberOfArticles)
{
    return PartialView("_LastArticles", db.NewsArticles
    .Include(i => i.Tags)
    .Include(i => i.SeoTags)
    .Where(n => n.Status == PublishStatus.Published)
    .OrderByDescending(n => n.PublishDate)
    .Take(numberOfArticles)
    .ToList());
}

HomeController 的索引视图:

@{ Html.RenderAction("LastArticles", "News", new { numberOfArticles = 2 }); }

为了清除缓存,我的应用程序中有一个管理区域,其中包含一个控制器和一个动作,用于更新子动作存储的数据。因此,当更新新闻文章时。缓存应在主页上刷新。

在该操作中,我有以下代码:

var cacheManager = new OutputCacheManager();
cacheManager.RemoveItem("News", "LastArticles", new { area = "", numberOfArticles = 2 });
cacheManager.RemoveItem("News", "LastArticles", new { area = "" });

我尝试了多个版本,但没有运气。有谁能够帮助我?

4

1 回答 1

1

我相信你不应该明确定义(空)区域。尽管该区域是路由的重要组成部分,但 MVCDonutCaching 在定义内部键时做了一些奇怪的事情。也许 MVCDonutCache 有一个关于区域的错误。

于 2015-01-21T12:46:36.897 回答