http cache header

Kathiravan
Nov 2, 2020

http cache header

to understand cache we need to understand three components

  1. Client(browser,app etc)
  2. Reverse proxy / Intermediate proxy server ( like nginx ,cloudfare etc)
  3. origin server ( actual backend server like nodejs etc)

cache-control : no-store

Dont store cached files in any where ( Cient as well as Reverse proxy)

cache-control : no-cache

--

--