Web Caching Explained by Buying Milk at the Supermarket

If you have ever bought milk at the supermarket, then you can understand server-side and browser-side caching.

If you are an avid internet user (you probably are), you have benefitted from caching over and over again. But you probably don’t know when it is working its magic behind the scenes!

From a developer’s perspective, caching makes it much easier to build high-performing web apps and web servers. Instead of needing to constantly optimize servers that are overwhelmed by thousands of requests, developers can implement caching protocols to make life much easier.

Since caching might make a difference between 1 second to load a page and 2 seconds, the impact can feel a little bit… underwhelming. But, it will be necessary if you want to handle a high volume of users.

After using caching in a past web app, I realized there had to be a better way to explain it than just walking through the terminology. I noticed that it aligned very well with the pathway of milk from a farm to your refrigerator, so I figured that would be a better way to explain it.

In order to understand this guide, you just need to know about the basics of web servers. Let’s get into it!

What would the internet look like without caching?

Before we get into caching, let’s think about what the internet would look like without caching. Imagine, for a moment, that you are living in the 1700s or 1800s in a rural area. You own a farm, and there is no refrigeration available. You have a few cows on your farm, but their milk is not nearly as valuable since it will spoil quickly.

Quick interruption: Some cultures still do not have access to refrigeration. They will either drink raw milk directly from a cow’s udder, or mix milk with grains and let it ferment

ANYWAYS, you want to sell your milk to others in your village. But, they will have a very limited time frame to drink the milk. Let’s say that one of your cows can produce a gallon of milk per day. But, if too many people show up to your farm looking for milk, you will need to send some home and ask them to wait til the next day.

Also, you can’t even think about adding more cows and scaling up your operation since you have such limited distribution. Only the other members of your village can buy your milk. You have some clear limits.

Without caching, you are limited by the computing power of your servers. Caching is used to load static assets, like:

  • Images
  • CSS
  • Static HTML files
  • JavaScript files

A server, by default, must submit a new response for every incoming request. But, a request to load a page could actually mean 4 separate requests, one from each of the categories above. When you take into account larger image files, your servers can become overwhelmed by users all over the world. Then, users will experience slow load times as they wait for their page to load.

Ideally, you would want to ease the demand on your servers by storing responses to common requests. Your server would not need to handle each new individual request, but instead, your cache could deliver an immediate response. You could always pay for more servers, but that can lead to uncontrollable expenses.

What is server-side caching?

In our farm scenario, do you know what would make it a LOT easier to run a successful dairy farm? A supermarket with refrigeration! That way, people will not need to show up to your farm and consume the milk immediately. You will be able to keep it safely stored for a couple weeks at a time.

The supermarket removes a lot of the stress on your farm because your cows will not be expected to produce in real-time! The supermarket will handle the demand. You just need to keep the cows productive on a daily basis. Even better, residents of all the surrounding villages can now buy milk from your farm, because it will always be available in the refrigerator.

Use this interactive image to compare a server-side cache to a supermarket.

Just like a supermarket, a server-side cache will handle popular requests and deliver content much more quickly and reliably.

In the image above, I use the term “caching proxy”. A caching proxy is a server that stores the static files that are used to respond to common requests. A caching proxy will intercept common requests and quickly deliver a response. It prevents those requests from stressing your main web servers.

You probably have a bunch of questions like,

  1. What determines a “popular” request?
  2. How long will the proxy cache the responses?

That will require a longer tutorial on setting up caching, but for now, you should know about one important concept called “freshness”. The caching proxy will have different files that have been cached at different times, and it needs to decide whether it should still serve these files. This will depend on your caching policy.

This also works just like milk in a supermarket. A supermarket manager will need to decide how long they will hold your milk before throwing it out. Caching proxies measure their success through a cache hit ratio– the percentage of content that can be served through the caching server.

What is a CDN?

So far, there is one grocery store selling your milk. Although that is a big improvement, you still have no way to get your milk to people outside the range of this local store. You are going to need to add more stores if you want to scale up your operation.

So, let’s say you start distributing your milk to more supermarkets. Now, you can satisfy customers across a much larger geographic range. This is similar to a content delivery network, or a CDN. A CDN is a series of proxy servers (like we discussed above) located all over the world.

As an end-user, you probably feel that high-speed internet allows most sites to load very quickly. However, this is only because they use CDNs to deliver static files at rapid speed! If you are located in England and you are trying to load a file cached in a server in Virginia, you will experience some delay since the original signal can only travel so quickly along thousands of miles of cable. A local caching proxy in the United Kingdom would allow the site to load faster.

So, your servers can send a copy of static assets to each of these proxy servers within your CDN network, and they can handle local requests until the assets are no longer “fresh”. Some common CDN providers include Rackspace, Akamai and Amazon Web Services.

What about browser caching?

Now, people across the country (or the world) can bring home cold milk from your farm. There’s just one issue- they have no way to store it in their own homes. So, this system still does not serve customers very well. They still must drink milk pretty quickly after they buy it, and return to the grocery store for more.

The solution is a refrigerator, of course. With a fridge, you can store the milk locally and avoid a request to the supermarket. This is a completely separate location for storing static assets since it is on the client side, or on the same computer as the browser. Our proxy server was located in a remote location.

This is great for a site like Facebook or Amazon that you might frequently visit. And it is great for their server costs too, since they can reduce the number of requests they need to handle.

One key note- we are NOT saying that milk magically arrives in your refrigerator! You still need to make that initial request that reaches either the server or the proxy server. After that, you can cache some of the files locally.

How does your browser know when to request new files from the server? Otherwise, you would never experience updated versions of these local files.

Well, just like milk producers put a date on their milk packaging, servers will add some sort of identifier within the HTTP response header. There are actually 4 separate systems for HTTP caching. The scenario shown above closely resembles the “expiration date” method. Some of the other methods still require your browser to check with the server before sending the cached file.

When To Start Using Caching

Let’s say that you are building your first web app. Until you have thousands of users, you probably won’t need to worry about caching protocols, since server costs will still be low. However, as you scale up, you will need to implement caching if you want your app to load quickly.

For example, Heroku is a great tool to deploy your first web app. But, it requires you to use a separate service to implement caching, like Amazon’s CloudFront or CloudFlare. That will take more time to learn.

On the browser-side, you have probably experienced caching when you are trying to reload a page with new static assets, but the page simply won’t change. No matter how many times you refresh the page, nothing changes.

This is because of some caching protocol on the browser-side, usually. In order to bypass your cache and request new assets from the server, you can use Cmd+Shift+R on a Mac or Ctrl+Shift+R on PC.

Get More Visual Tutorials

Did you enjoy this tutorial? Sign up here to get my latest web development tutorials. Or, if you have a question, let me know in the comments!

5 thoughts on “Web Caching Explained by Buying Milk at the Supermarket

  1. Nice analogy. Would be good to address the fact that there are many layers of caches along the way — not just one server-side and one browser-side. Your network may have one, your ISP probably has one, the CDN they host might be there or further upstream, etc. I’ve had luck with a restaurant cook describing how multi-level caches in CPUs work, and there are parallels. But analogies work wonders with my students. One comment though, given that I have students from all over the world in my university courses, I personally would drop the editorial describing how other cultures without refrigeration ferment milk as “Yuck.” Doesn’t help the analogy.

    1. Good point, I removed the “Yuck”. As for the comments about multiple levels of caches, yeah it’s a good point. I think of this as the first article that a person reads on the subject, so I try to just make it focused on the general system. But, you could imagine that I would add in distributors etc. to show another level of caches!

  2. Hey, great article! Although I don’t know how some people would feel about you saying yuck! to their food…

Leave a Reply to Kevin LongCancel reply