I help maintain several Wordpress-based websites that publish news and reference information.

We have been working hard to make pages at the websites load as fast as possible.

One of the things we've done is implement very long "max-age" times in the "cache-control" http headers for most of our static files, such as images and css files.

The particular cache-control setting we're using is "public, max-age=31536000". 31,536,000 seconds is 365 days.

The upside is that this setting does, in fact, cause the static files to be cached as visitors browse through different pages of our sites.

But here's the rub. This cache-control setting doesn't do much for us across browser sessions. Even though the setting is supposed to tell the browser "cache this file for an entire year", if a visitor to our site shuts down their browser, then starts it up just five minutes later and comes back to our site, the browser insists on re-loading all the static files, even though it still has them in its cache.

I've checked this carefully in Firefox, viewing the headers with Live HTTP Headers. But I can also qualitatively see the same thing happening in other browsers.

Apparently, browsers insist on re-loading all content for a website if the content hasn't been loaded once during the current browser session.

So ... Is there any way we can "politely suggest" to browsers that they always load cached content from the cache, even if the browser hasn't been to our site during the current browser session?

link|improve this question
I've spent a lot of time looking further into the issue I described above. It seems like the issue is primarily occurring with Internet Explorer. The problem I initially observed with Firefox was due to an offline storage setting in my particular version of Firefox. Having changed the setting, Firefox now seems very good about using cached content across browser sessions, and Chrome also seems to be well-behaved on the same front. Internet Explorer (I've done most of the testing with IE7) is not so good. I will do more testing and report back on what I find. – BeSimple Jul 24 '11 at 0:01
feedback

1 Answer

Check the ETag, Expires, and Last-Modified headers as well.

You need an Expires header, and sometimes ETag and Last-Modified can defeat caching.

link|improve this answer
Thanks, @ScottAnderson, for the feedback. – BeSimple Jul 23 '11 at 23:38
Unfortunately, we're not able to control the Etag and Expires settings on most of our static content because it's being served up from a CDN, and the CDN service doesn't give us control of those HTTP headers. – BeSimple Jul 23 '11 at 23:49
The CDN we use automatically attaches an ETag header to our static files that it serves. If we set the "cache-control" header, it will not provide an "Expires" header with the file. That said, other files that we serve up with our pages -- they are from Google's API service -- have long "max-age" settings with "Expires" headers and withOUT Etag headers , and they are being re-read across browser sessions just like our files. So it's not the lack of Expires headers, or the inclusion of Etag headers, that is the source of the problem. – BeSimple Jul 24 '11 at 0:08
feedback

Your Answer

 
or
required, but never shown

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