Most often the Any cache will meet the expectation, as it performs the Local / Proxy / Server cache.
If you have an ecommerce and it has a category page, where the user will select which category he wants to access.
This type of information can be "cached" anywhere, when the user tries to access it and has the files in the machine itself, will only make a HEAD request on the server and if the cache is valid it responds with the data that is on the local machine, if a user who has never accessed your system tries to access it, it will use the cache of the last request.
You should not cache sensitive information on the server / proxy, see the following situation:
[OutputCache(Duration = 3600, VaryByParam = "none")]
public string GetName()
{
return "Olá " + User.Identity.Name;
}
If user Cesar performs the request, he will normally return "Hello Cesar", but when José completes the request after Cesar, he will return the information "Hello Cesar".
Related to the local cache, if you need a complete update on the page, and make it impossible to access the old page, you would need to change the address of your site, so that the user can perform the request and not use the local cache.
Ref: