gpt4 book ai didi

asp.net-mvc - OutputCache 不缓存 RedirectResult

转载 作者:行者123 更新时间:2023-12-03 20:22:21 25 4
gpt4 key购买 nike

当 Controller 操作返回 RedirectResult 结果时,输出缓存过滤器似乎不适用。

以下是如何重现 ASP.Net MVC3 默认 Internet Web 应用程序的问题:

在 Web.config 中:

<system.web>
<caching>
<outputCache enableOutputCache="true"></outputCache>
<outputCacheSettings>
<outputCacheProfiles>
<add name="ShortTime" enabled="true" duration="300" noStore="false" />
</outputCacheProfiles>
</outputCacheSettings>
</caching> ...

在 HomeController.cs 中:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace MvcOutputCacheRedir.Controllers
{
public class HomeController : Controller
{
[OutputCache(CacheProfile = "ShortTime")]
public ActionResult Index()
{
ViewBag.Message = "Welcome to ASP.NET MVC!";
return View();
}

[OutputCache(CacheProfile = "ShortTime")]
public ActionResult About()
{

// Output cache works as expected
// return View();

// Output cache has no effect
return Redirect("Index");
}
}
}

我在任何地方都找不到指定的这种行为......这正常吗?如果是这样,任何解决方法?

最佳答案

这绝对是有意的行为。 OutputCacheAttribute 仅用于生成字符串的 ActionResults。事实上,如果你仔细研究一下(Reflector/ILSpy 是你的 friend ),你会特别看到:

string uniqueId = this.GetChildActionUniqueId(filterContext);
string text = this.ChildActionCacheInternal.Get(uniqueId, null) as string;
if (text != null)
{
filterContext.Result = new ContentResult
{
Content = text
};
return;
}

我可以看到您的原因,甚至可能导致重定向的“决策”可能会消耗时间/资源,但您似乎必须自己实现这种“决策缓存”。

关于asp.net-mvc - OutputCache 不缓存 RedirectResult,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8013157/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com