Top "Http-caching" questions

Eliminate the need to send HTTP requests in many cases, and eliminate the need to send full HTTP responses in other cases, by storing web content closer to where it is consumed.

How to use caching in ASP.NET Web API?

I am using ASP.NET MVC 4 with WEB API I have the following action, in the action shown below, my …

c# asp.net-web-api http-caching
Is it possible to cache POST methods in HTTP?

With very simple caching semantics: if the parameters are the same (and the URL is the same, of course), then …

http post http-caching
Output caching for an ApiController (MVC4 Web API)

I'm trying to cache the output of an ApiController method in Web API. Here's the controller code: public class TestController : …

c# asp.net-web-api outputcache http-caching
Prevent IE11 caching GET call in Angular 2

I have a rest endpoint that returns a list on a GET call. I also have a POST endpoint to …

javascript angular typescript internet-explorer-11 http-caching
Setting HTTP cache control headers in Web API

What's the best way to set cache control headers for public caching servers in WebAPI? I'm not interested in OutputCache …

c# asp.net-web-api http-caching
What is the difference between no-cache and no-store in Cache-control?

I don't find get the practical difference between Cache-Control:no-store and Cache-Control:no-cache. As far as I know, no-store means …

http caching http-caching
Expires vs max-age, which one takes priority if both are declared in a HTTP response?

If a HTTP response that returns both Expires and max-age indications which one is used? Cache-Control: max-age=3600 Expires: Tue, 15 May 2008 07:19:00 …

http http-headers cache-control http-caching
Cache in CDN but not in browser

I currently use Akamai as a CDN, but I noticed that the browser is also caching content. It's great that …

http-headers cdn http-caching akamai
Cache-Control: 'private' makes 'no-cache="set-cookie"' unnecessary?

My reading of the definition of the 'private' directive for the Cache-Control header is that it will prevent any part …

http http-caching
Express static server cache control with max-age=0,must-revalidate

I have setup a simple static server using express. var location = path.join(__dirname, 'public'); app.use(express.static(location, { …

node.js express http-caching