Skip to main content
WordPress made easy with the drag & drop Total WordPress Theme!Learn More

What is WordPress Caching and Why is it Important?

Last updated on:
  1. 1. Beginners Guide to WordPress Internal Functions
  2. 2. Currently Reading: What is WordPress Caching and Why is it Important?
  3. 3. How does WordPress Caching Work?
  4. 4. How to Install & Setup WordPress Caching with WP Super Cache
  5. 5. How to Setup WordPress Caching with W3 Total Cache (W3TC)
  6. 6. MaxCDN Review: The Best CDN for WordPress?

It’s nice to see that you’ve read my boring old article on WordPress’ Internal Functioning – kudos! Wait, what? You haven’t? No worries, just give it a quick read – especially the part under “What happens when someone views your WordPress blog?”.

As the title suggests, we’re going to learn WordPress caching. In this post series we’ll explore each aspect of caching one by one, in detail.

  • Why it is important
  • How does it work
  • And finally, how to implement it.

Why is WordPress Caching so Important?

Caching in a nutshell

In college when they teach me a topic I know nothing about, I tend to think about its applications first, rather than learning about the topic. For example – recurrence relations. They’re used to calculate the nth number of a sequence of numbers, like the Fibonacci sequence. Once I understood its importance – how recurrence relations help save a lot of precious computation time – well, I took an interest in it. If you’d like to know a bit about recurrence relations, you’re in luck – I’m going to describe it briefly  in the next paragraph. Folks who don’t wanna learn about it, could skip it – I wouldn’t mind. 😛

Fibonacci Sequence

A Fibonacci sequence is simply the addition of the previous two numbers in the sequence. Almost everyone from a Computer Science background know what I’m talking about – you’re bound to write a program (in any language) to generate a Fibonacci sequence. If I’m to start from 0, then the Fibonacci sequence would go:

0, 1, 1, 2, 3, 5, 8.. up to infinity.

Now from the above sequence, if I were to ask you the 5th number of the series, the answer would be 3. Now if I were to ask you the 500th number, you’d have to calculate the entire series up till the 500th term. For a modern computer, heck, your phone would compute it in less than a second. But, in terms of the modern processor, that’s a lot! Increase that 500 to 50,000,000,000 (50 billion-th) Fibonacci number and yeah – you’d need a lot more time.

This is where the recurrence relation comes in. Applying recurrence relations, we derive a formula that can calculate the nth Fibonacci term. Be it 5th or the 50th or the 50 trillion-th Fibonacci term, that derived formula can calculate all of them in exactly the same amount time, i.e. a constant time. This is incredibly helpful as it saves a lot of precious computation time and it also helps us calculate the complexity of a program.

So what’s this big fuss about WordPress caching?

Lamb2

Google loves faster sites. All of us love faster sites. One of Google’s key SERP (Search Engine Results Page) ranking factors include the speed of a website and its response time.

Caching is a fundamental factor in determining a site’s overall performance. Especially in WordPress, since it generates HTML pages dynamically – by employing PHP code coupled with MySQL database queries. With properly configured caching protocols your WordPress site can be orders of magnitude faster. It helps prevent redundancy and speeds up load times of your site – for free! Speeding up your WordPress site can be employed in 3 primary ways:

  1. Use high end, insanely powerful, clustered servers
  2. Use a Content Delivery Network (CDN)
  3. Configure WordPress Caching

The first two points can be (very) expensive and usually depend on the number of visitors a site has. However, WordPress caching can be used (and should be used) even in the smallest of websites. It’s interesting to know that the biggest name in WordPress Managed Hosting – WPEngine use their own custom built, proprietary caching technology called EverCache which combines all three major forms of caching – page, database and object caching.

What is WordPress Caching?

If you’ve read my previous article, you’ll know the number of stuff that takes place every time someone visits your site. Here’s an image to jog your memory:

WordPress Internal Functioning

What if those dynamically generated web pages were saved in the server’s hard disk or memory (RAM) and served from there, every time someone requested the page? Be it one or 1000 people, that same page would be sent! That would save a lot of database queries, PHP code execution, thereby saving the most important factor – precious computation time. It would be really, really fast.

This is WordPress caching. Reusing previously generated data (or requests such as database queries) to speed up new, subsequent requests.

But hang on, what if someone comments or updates a post or publishes a new one? Won’t those previously generated HTML pages contain the wrong/outdated data? You’re right, it absolutely would! Thus we have something called:

Purging the cache

Purging the cache essentially means re-caching all previously cached data. This means the old ones are are deleted and new ones are created or regenerated. This typically takes place based on a number of protocols – some of which include:

  • When a comment is posted
  • When a new post is published
  • When an old post is updated

The WordPress core and the caching plugins know when to purge the cache so that old, irrelevant data isn’t served to the visitor.


This topic covers the two factors I find is important to understand before we begin to learn WordPress caching. Now that you have a solid understanding of the two, it is time to learn how caching works.

Benefits of WordPress Caching

To conclude this chapter, let’s take a look at some of the benefits caching has to offer:

  • Speed up your site for free
  • Thereby improving Google and other search engine rankings
  • Save a substantial amount of the server’s resource consumption – very helpful for people who host their site in shared hosting servers

What are your thoughts on WordPress Caching? Do you have something to add to its list of benefits? Let us know in the comments section below!

wordpress-caching
Article by Sourav WPExplorer.com guest author
Subscribe to the Newsletter

Get our latest news, tutorials, guides, tips & deals delivered to your inbox.

9 Comments

  1. Clay Scott

    Sourav,
    A good article but it seems you never really explained “how to implement it”. I was hoping for a little “how to” on implementing WordPress Caching. Is it enabled through the dashboard? or wp-config.php?
    Thanks.

    • AJ Clarke | WPExplorer

      Hi Clay, this should be the next and last post of the series 😉

    • Sourav K

      Hello Clay,
      You’re right mate, but this chapter is an introduction to WordPress Caching. Now that you know the “why”, you’re ready for the upcoming topics where we’ll be discussing the “how to” part! 😉

      Stay tuned!

  2. Somnath

    Nobody explained it before like you explained.Now I got caching and I am going to implement it. Thanks for valuable information Sourav.

  3. antony agnel

    thanks for the useful info! 😀

  4. studsheep

    Bro, but what is the 50 billion th Fibonacci number?

    • Kyla

      Well, according to Wikihow you can use Binet’s formula with the golden ratio, so you would take 1.618034 to the 5 billionth power less -0.618034 to the 5 billionth power divided by the square root of 5. I don’t have a graphing calculator anymore but Google calculates anything to the 5 billionth power as infinity, so infinity less infinity (which is undeterminable) divided by the square root of 5 – so I’m going to go with the possibility of a 0. If you have a real answer please do share! 😉

  5. Ruperth Simth

    very well explained article. am really impressed. Thankyou so much

  6. Viby Greens

    Thank you so much! Such a great explanation!

Leave a Reply

Your email address will not be published. Required fields are marked *

Learn how your comment data is processed by viewing our privacy policy here.