When i set Cache-Control: 'max-age=0'
in request header,this request will revalidate its cache entry (eg. with the If-Not-Modified header) all the way to the origin server. If the reply is then 304 (Not Modified), the cached entity can be used.
When i set Cache-Control: 'max-age=20'
in response header,It,s mean is whilein 20 s , Request at the same address will use the cache.
But if i set Cache-Control: 'max-age=20'
in request header,It doesn't work as well as the former,So i want to know what will happen when i set max-age=xxx(xxx != 0) in request header?