Кеш ответов хорошо работает в Почтальоне, но кеш не работает в других браузерах, и "Cache-Control" в браузере "public, max-age = 60".И каждый раз при обновлении браузера вызывается метод действия.мой код API:
[HttpGet]
[ResponseCache(Duration =60)]
public IActionResult GetAllCustomer()
{
Request.HttpContext.Response.Headers.Add("X-Total-Custumer", _h_Plus_SportsContext.Customer.Count().ToString());
return new ObjectResult(_customerService.GetAllCustomer())
{
StatusCode = (int)HttpStatusCode.OK
};
}