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.

link|improve this question

The same as always: a combination of the maximum cache duration desired and ensuring the server returns a content-not-modified. A smart server might also use ETags which would allow for more control beyond the last-modified-date. – pst Sep 1 '11 at 17:36
feedback

1 Answer

up vote 2 down vote accepted

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.


# first version access (1.1/main.css will never expire)
# e.g. by far future Cache-Control + Expires Header
<link ... href="/static/1.1/main.css

# after upgrading/releasing trigger fresh download
<link ... href="/static/1.2/main.css

It involves some effort to your build+deploy process but from caching control it is the very simple.

link|improve this answer
In practice, this is often the only workable solution. – EricLaw -MSFT- Sep 1 '11 at 20:37
So if I have an expires or cahce-control header with say a yeat expiry, there is no way to tell the browser to check if an item has been updated? – chobo Sep 1 '11 at 21:28
Basically 2 cache-style: 1) Conditional-GET (browser is doing expclitly a call to check new content, e.g. by ETag or If-Modified-Since, resulting in 304 Not-Modified or 200 OK updated content) . 2) Telling browser to not do a call at all (e.g. Cache-Control: max-age, Expires header). 2) has the advantage that you don't cause traffic at all, but has the disadvantage that update-forcing won't be possible. So I would use style 2) only if I am sure that content (identified by URL) won't ever get updated (see my initial answer). – manuel aldana Sep 2 '11 at 8:19
so there is no combination of headers that will cache files for a long time, but still do a check for updated content. It's either one or the other? – chobo Sep 2 '11 at 16:09
1  
yes there is only either/or. You could combine both Conditional-GET (e.g. ETag) and Cache-Control: max-age, but the core problem is how to find out the "right" max-age value. It is hard to know content is updated (like unplanned bug-fix rollout). Therefore in my view the caching approach with changing URL for new content is optimal (reduced server calls + having the referred static content under server's control). – manuel aldana Sep 2 '11 at 16:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.