ASP.net Core ResponseCache 和 RedirectToAction.如何缓存仅匿名响应



给定以下控制器:

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"。是否会缓存响应?

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

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

值得考虑响应缓存对非匿名用户的影响,但在这种情况下,你的方案不会受到这些潜在影响。

相关内容

  • 没有找到相关文章

最新更新