MVC3 部分视图 OutputCache 被父视图覆盖

发布于 2024-12-14 14:19:02 字数 806 浏览 0 评论 0原文

当尝试在部分视图上设置不同的 OutputCache 属性时,我发现 PartialView 缓存正在使用父级输出缓存持续时间。使用以下代码,我希望 RenderPartial 会导致更短的 OutputCache 持续时间,但我发现它与父视图相同(10 秒)。

public class HomeController : Controller
{
    [OutputCache(Duration=10, VaryByParam="none")]
    public ActionResult Index()
    {
        ViewBag.Message = "Time now: "+ DateTime.Now.ToString();

        return View();
    }

    [ChildActionOnly]
    [OutputCache(Duration=5, VaryByParam="none")]
    public PartialViewResult LogonPartial()
    {
        return PartialView("_LogOnPartial");
    }
}

通过这个显示 DateTime.Now 的简单示例,在部分视图中我发现PartialView 不会清除它的缓存,直到父视图刷新他的缓存,我希望部分视图每 5 秒清除一次缓存(而不是像父视图那样每 10 秒清除一次)。在我看到的在 PartialView 上使用 OutputCache 的示例中,缓存是在 PartialView 而不是包含视图上实现的。有谁知道这是否是 MVC3 中缓存的限制,或者是否有另一种方法可以处理同一页面上的不同缓存机制?提前致谢!

When attempting to set a different OutputCache property on a partial view I find that the PartialView cache is using the parents output cache duration. With the following code I would hope that the RenderPartial would result in a shorter OutputCache duration but I find that it is the same as the parent view (10 seconds)

public class HomeController : Controller
{
    [OutputCache(Duration=10, VaryByParam="none")]
    public ActionResult Index()
    {
        ViewBag.Message = "Time now: "+ DateTime.Now.ToString();

        return View();
    }

    [ChildActionOnly]
    [OutputCache(Duration=5, VaryByParam="none")]
    public PartialViewResult LogonPartial()
    {
        return PartialView("_LogOnPartial");
    }
}

With this simple example showing the DateTime.Now in the partial view I find that the PartialView does not clear it's cache until the parent view flushes his where I would hope that the Partial view clear's cache every 5 seconds (not every 10 as the parent view does). With the examples that I have seen using OutputCache on a PartialView the cache is implemented on the PartialView not the containing view. Does anyone know if this is a limitation of caching in MVC3 or if there is another way to handle different caching mechanisms on the same page? Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瞄了个咪的 2024-12-21 14:19:02

您已将整个父视图缓存了 10 秒。这意味着在这 10 秒内,子操作永远不会被命中,并且整个视图将从缓存中提供。即使子动作的缓存在 5 秒后过期,它仍然不会被命中。

在 ASP.NET MVC 3 中,仅支持圆环孔缓存(通过在子操作上使用 OutputCache 属性来缓存页面的一部分)。不支持环形缓存(从此缓存中排除缓存页面的部分)。

You have cached the entire parent view for 10 seconds. This means that during those 10 seconds the child action wouldn't ever be hit and the entire view will be served from cache. Even if the cache of the child action expires after 5 seconds it still won't be hit.

In ASP.NET MVC 3 only donut hole caching is supported (cache a portion of the page by using the OutputCache attribute on a child action). Donut caching is not supported (exclude portions of a cached page from this cache).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文