Taiyi dev

Notes

HTTP Cache

Why Cache

  1. Reduce latency
  2. Cut down the bandwidth
  3. Reduced load on the server

Type

Caching Headers

Cache-Control

max-agecontent can be cached for given number of seconds
s-maxagecontent can be cached at public places for given number of seconds. s: share
privateonly cached in the client/browser
publiccache in client/browser and also be cached in the proxies
no-cachecontent can be cached but must require validation
no-storecontent is not to be cached
must-revalidate
proxy-revalidate

Reference:

;