How to optimize browser caching

When users visit your pages, their browsers download all of the resources needed to display the page – the images, CSS, JavaScript and fonts, and so on. They all use bandwidth, and take time to transfer. But with the right configuration, you can tell those browsers that they can save and re-use those files. Then, they don’t need to re-download them on future page views and visits. That can make browsing your site feel a lot faster.

What is a browser cache?

When your web browser downloads resources from webpages, it saves them on your computer. When this happens, your website can also send additional instructions on how, when are where those resources can be re-used. Those instructions are sent in the form of HTTP headers; metadata which is sent alongside the resource.

The next time the browser encounters a request for that resource from a website, it can check if it already has a saved copy, and use that instead. Your browser manages this pool of resources, and keeps track of every object (and that object’s URL) in its cache.

You can test your browser cache on this page by simply reloading it. You’ll notice that it’s much faster than when you initially visited (or when you do a ‘hard refresh’), because your browser already has everything it needs to load the page saved ‘locally’, and ready to go.

Best practice for caching rules

Generally speaking, the best practice is to cache as much as possible, as often as possible, for as long as possible. As users browse your website, or visit repeatedly over a period of time, you want their experience to be as fast as possible. Not having to (re)download the same assets repeatedly can help keep things fast.

In many cases, you’ll want to take full advantage of browser caching, and store resources for as long as the browser allows.

But caching everything, forever, can cause some headaches. When setting caching rules for resources, you need to consider what might happen if a resource changes.

For example; imagine that you alter your CSS to change the layout of your website. Some of your users may have a cached, older version of that CSS stored in their browser cache. They’ll see the old (or potentially even a broken) layout, because they’ve loaded a ‘stale’ file. In scenarios like this, you don’t want the cached version to be served; and you might even want to invalidate those cached resources.

Resource versioning with WordPress

WordPress automatically appends ‘version parameters’ to most CSS and JavaScript resources, based on your theme version. E.g., file.js?ver=1.0.0.

When your theme is updated, that version number – and therefore the URL of the resource – changes. That’s a new file, so there’s no risk of serving a stale file.

Cache control rules can be configured to prevent these kinds of conflict, by setting appropriate expiration timeframes, or, using new/different filenames for resources which have changed. Because the browser cache is tied to the URLs of resource, changing the URL of that resource is a foolproof way of ‘cache-busting’.

Managing browser caching

When configuring browser caching rules, there are three basic questions to answer for every type of resource:

  1. Should the browser be allowed to cache this?
  2. How long should it be allowed to be cached for?
  3. What might invalidate that cache?

For almost all websites, ‘static’ assets like images, or CSS/JavaScript which is unlikely to change frequently, should be cached as ‘aggressively’ as possible, for as long as possible. You can do that by setting a combination of a max-age, and/or a specific expiry date in the far future.

If your website includes versioning parameters on your resources, then you can safely cache them forever – because as soon as changes are made, the system will provide a different URL to load.

Image caching with WordPress

WordPress websites can safely cache images forever, without worrying about serving stale resources. That’s because WordPress doesn’t (natively) allow editors to change the filenames – so any changes to images involves replacing them, and, therefore changing the URL.

For websites which don’t automatically version their files, the caching rules and expiration times should aim to balance the benefits of efficiently loading resources, versus the risk of serving stale content for a period of time. Those decisions will vary by website, by resource type, and by risk.

Changing the URL isn’t the only way to invalidate a cached resource. You can, for example, use more advanced HTTP header configurations (<em>’ETags'</em>) to instruct the browser to check that the contents of the cached file match that of the requested file. But these types of setups are a lot rarer, and a lot more complicated to configure and maintain. In most cases, simply versioning resources is the best way to manage when they’re invalidated.

Checking your browser cache settings

The easiest way to check whether you’re taking full advantage of browser caching is by using Google’s PageSpeed Insights tool.

Amongst other recommendations, it’ll identify resources which aren’t being cached, or which have short lifespans (and which you might want to cache for a longer period). In the example below, we can see a series of images and fonts which are only cached for 30 days. If you see similar results, you should consider increasing the expiry date (or maximum age) of the relevant cache settings.

Google’s testing tools, showing caching recommendations

How to implement and configure browser caching

Configuring browser caching by hand can be extremely complex (e.g., you might need modify a .htaccess file extensively).

The good news is that there are a range of excellent WordPress plugins which can help you to set up the basics, and prevent you from needing to get knee-deep into your server configuration. We have some great suggestions in our top WordPress plugin recommendations article.

Most good WordPress hosting companies will also set sensible defaults, which should provide a good starting point to optimize from. You could also pair that with a good CDN (like Cloudflare) to squeeze even more out of your caching setup.

If you do want to get hands-on instead of using a plugin, this article from Kinsta has some great tips and tricks.

Coming up next!


21 Responses to How to optimize browser caching

  1. Sascha
    Sascha  • 8 years ago

    Thanks for another great article.

    Being a W3 Total Cache user myself I’d sure agree about it’s myriad of options and possible pitfalls. Would you say WP Rocket is able to achieve similar speed gains despite it’s simplicity?

    • Michiel Heijmans
      Michiel Heijmans  • 8 years ago

      I do. The thing is that W3 Total Cache allows you to tweak performance even more, gaining perhaps some extra points in for instance Google PageSpeed. But for the majority of things to do when optimizing for speed both work, but WP Rockets is definitely the one to use for the vast majority of WordPress users.

  2. raj
    raj  • 8 years ago

    I will definitely try WP Rocket Plugin.

  3. priya
    priya  • 8 years ago

    Is cloudfare fine?

    • Michiel Heijmans
      Michiel Heijmans  • 8 years ago

      Don’t know, have you tested it on your website? That’s really the best way to find out. MaxCDN is also an alternative, for a comparison see here.

  4. 250
    250  • 8 years ago

    Thank you, for the helpful information .

  5. Alessia Martalò
    Alessia Martalò  • 8 years ago

    WP Fastest Cache, in my opinion, is absolutely the best caching plugin :)

  6. Stefan
    Stefan  • 8 years ago

    Hi,

    I’ve been using your plug-ins for some time now and it’s great. Thank you for this article. I still use W3 Total Cache on all my websites and did try WP Rocket : I’m thinking of switching, because I’m not sure that W3TC is still developped and/or supported (it’s been said on the support forum), but I have no confirmation.
    Do you have insider information about that ? :-)

    • Michiel Heijmans
      Michiel Heijmans  • 8 years ago

      Nope, but I’d give WP Rocket a spin for sure. I really like it!

  7. laura routh
    laura routh  • 8 years ago

    Thanks for this! I tried W3 Total cache with no luck. Then, I decided to try WP Super Cache, and now, after doing some reading, I’m afraid to uninstall it. I’ve heard good reviews about WP Rocket and wish that I had tried them first. Because they offer support, maybe they can help me uninstall WP Super Cache. I’m afraid of messing up my site. Thank you, again, for the helpful information.

  8. ankita
    ankita  • 8 years ago

    Great information.. this article is very helpful for seo point of view.

  9. Doc
    Doc  • 8 years ago

    Great article, thanks.
    Any suggestions for additional caching when running under CloudFlare? All CF speed options are toggled including Rocket Loader.
    I have seen a noticeable increase in performance when caching pages to disk with W3TC on top of CF.

    • Michiel Heijmans
      Michiel Heijmans  • 8 years ago

      To be honest, I haven’t tested Cloudflare enough to answer that question. I do know that if you have the option to cache ro anything else than disk (probably still your own server, right), that might work eveb better.

      Anyone any thoughts on this? Please do comment!

  10. Jan Reilink
    Jan Reilink  • 8 years ago

    Nice article. And what about AppCache (manifest) next to browser cache, any opinion?

    • Michiel Heijmans
      Michiel Heijmans  • 8 years ago

      Depends on multiple things, enable it and test it ;-)

  11. Montar loja Virtual
    Montar loja Virtual  • 8 years ago

    Very good post. Really who does not know the confgurar W3TC can do very badly. I have seen several websites mangled because of it. And each webste need a different configuration for the host and the theme can infuence much.

    I got good results with W3TC but the host also helps a lot .

    • Michiel Heijmans
      Michiel Heijmans  • 8 years ago

      Agreed! Thanks for your addition!

  12. Martin
    Martin  • 8 years ago

    Why not add the code for the htaccess in this blog as well? For those who want to limit their plugin numbers.

    • Michiel Heijmans
      Michiel Heijmans  • 8 years ago

      Hi Martin, thanks for your comment! .htaccess is a powerful thing to play with and a lot of website owners haven’t even heard of it, I left it out so no harm can be done on the account of this article. Plugins, especially WP Rocket, make browser caching a lot easier.

      If you want to use .htaccess for browser caching, please check this article by GT Metrix.

      • Martin
        Martin  • 8 years ago

        Your link doesn’t seem to work. Could you point me to the correct page?
        I know what to add to the htaccess but I would still like to read that article to see if there are any pointers I missed.

        • Michiel Heijmans
          Michiel Heijmans  • 8 years ago

          Fixed, Martin. I forgot to include http:// in the link. Done now :)