当控制器操作返回RedirectResult结果时,似乎outputcache过滤器不适用。
以下是如何使用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");
}
}
}
我无法在任何地方找到这种行为......这是正常的吗?如果是这样,任何解决方法?
答案 0 :(得分:4)
这绝对是预期的行为。 OutputCacheAttribute仅用于生成字符串的ActionResults。事实上,如果你想看一下(Reflector / ILSpy是你的朋友),你会特别注意到这一点:
string uniqueId = this.GetChildActionUniqueId(filterContext);
string text = this.ChildActionCacheInternal.Get(uniqueId, null) as string;
if (text != null)
{
filterContext.Result = new ContentResult
{
Content = text
};
return;
}
我可以看到你的理由,甚至可能导致重定向的“decesion”可能耗费时间/资源,但似乎你必须自己实施这种“决策缓存”。