#asp.net-mvc #outputcache #response.redirect
#asp.net-mvc #outputcache #ответ.перенаправление
Вопрос:
Кажется, что фильтр outputcache не применяется, когда действие контроллера возвращает результат RedirectResult.
Вот как воспроизвести проблему с ASP.Net Веб-приложение MVC3 по умолчанию для Интернета :
В 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");
}
}
}
Я нигде не могу найти это поведение, указанное… это нормально? Если да, то какой-либо обходной путь?
Ответ №1:
Это абсолютно предполагаемое поведение. 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;
}
Я могу видеть ваши причины, возможно, даже «решение», приводящее к перенаправлению, может занять много времени / ресурсов, но, похоже, вам придется самостоятельно реализовать этот вид «кэширования решений».
Комментарии:
1. Я ожидал, что содержимое Http будет кэшироваться, будь то код состояния 200 или 302… Спасибо