Which combination of http headers can achieve the following?
I would like static content like images to be cached for as long as possible, but if those images change on the server, I would like the browsers to update them.
|
Which combination of http headers can achieve the following? I would like static content like images to be cached for as long as possible, but if those images change on the server, I would like the browsers to update them.
| |||
feedback
|
|
A very neat caching approach of static content is to encode version of your static content inside URL. Then "notifiying" browser to download new static content is just a matter of supplying new URLs to the client.
It involves some effort to your build+deploy process but from caching control it is the very simple. | |||||||||||||
feedback
|