ASP.net核心ResponseCache和RedirectToAction。如何缓存匿名只响应?

时间:2017-03-23 13:26:32

标签: caching asp.net-core redirecttoaction responsecache

给出以下控制器:

public class MyController : Controller
{
    [AllowAnonymous]
    [ResponseCache(VaryByQueryKeys = new string[] { "id" }]
    public async IActionResult Action1(string id)
    {
        if (User.Identity.IsAuthenticated)
           return RedirectToAction("Action2", new {id = id});

        return View();
    }


    [Authorize]
    public async IActionResult Action2(string id)
    {
        return View();
    }
}

假设经过身份验证的用户导航到" / Mycontroller / Action1 / 20"。是否会缓存响应?

如果答案是肯定的,那么如何只缓存匿名响应?

1 个答案:

答案 0 :(得分:0)

在您在此处显示的代码中,答案是否定的。 RedirectToAction将向您的站点发出单独的请求(301重定向),该请求将完全独立于第一个请求(到Action1)。

值得考虑响应缓存对非匿名用户的影响,但在这种情况下,您的场景可以避免这些潜在影响。