Skip to content

Setup Redis Object Cache to Optimize WordPress Database

The Redis server and Redis Object Cache WP plugin help cache dynamic MySQL server calls, reducing the database usage. It automatically stores the frequently requested SQL queries and their output data as an object cache. The combination of Redis and Ngnix helps save many server resources.

Like caching, the front-end static files play an important role in improving the site speed. Similarly, we need to cache the backend to enhance server performance. Therefore, we will use the Redis Object Cache.

The Redis Object Cache helps store the complex MySQL queries on RAM. Hence, next time any similar query requests, the Object cache will serve the output stored in RAM rather than hitting the new MySQL query. Thus, enhancing the overall speed and performance.

In this article, we will cover how to install and configure the Redis Server and enable the Redis Object Cache using the WordPress plugin.

If you’re following, this is the tenth guide and video demo in the #CloudServer series. We recently posted about setting up FastCGI Nginx Cache on the LEMP stack.

Let’s dive into configuring the Redis object cache for the WordPress blog —

Note: The post has been updated to support the latest PHP version, however, the screenshot/images still reflect the older version.

Install Redis Server

Execute the below command to update the APT repository of our Ubuntu Cloud Server.

sudo apt-get update

Install the redis-server as well as the php7.4-redis module for supporting the WordPress Object caching.

sudo apt-get install redis-server php7.4-redis
install redis sever and php7.3-fpm on Ubuntu

Configure Redis Server

Now that we have installed the Redis server, we will adjust the configuration file to improve its default configuration. Edit the redis.conf using below command:

sudo nano /etc/redis/redis.conf

And add the below lines to set the maximum memory limit the Redis Server should use for processing the Object Cache.

#You can adjust this value as you see fit - 200mb or 20000mb
#it depends on how much RAM you have. On a 1GB server, I use 100mb.
maxmemory 100mb
# this forces old keys to be deleted using first-in-first-out
maxmemory-policy allkeys-lru
Setting maxmemory and allkeys-lru in redis.conf file

Further down in the same configuration file. Comment these lines in Redis to use only memory instead of the storage disk.

#save 900 1
#save 300 10
#save 60 10000

The SSD disk writing speed is relatively low compared to RAM; hence we will be saving the Redis in the RAM cache instead of the disk.

redis configuration comment out save RAM memory instead of disk

Now, close the configuration file and restart the Redis server and php7.4-fpm using the below command:

sudo service redis-server restart
sudo service php7.4-fpm restart

The Redis server has been configured and running on the Ubuntu Cloud server.

Setup Redis Object Cache for WordPress

We have completed the backend setup of the Redis Server. Now we will set up the Redis to run as Object Cache for WordPress Database queries.

The process is straightforward. We need to install a WordPress Plugin called Redis Object Cache by Till Kruss and enable the Object Cache.

Follow the below steps for Redis Object Cache on WordPress:

  1. Login to WordPress Dashboard
  2. Navigate to Add New under the Plugin menu
  3. Search and Install Redis Object Cache by Till Kruss
    Redis Object Cache WordPress Plugin
  4. Activate the Plugin and navigate to Settings > Redis
  5. Hit on Enable Object Cache command button
    Enable Object Cache in WordPress
  6. That’s it!
Redis Object Cache Enabled in WordPress

The Plugin will automatically add the required files in our WordPress server directory and enable the Redis Cache for MySQL database optimization.

Monitoring Redis Object Cache

We have completed the setup with Redis Server configuration and used it on WordPress for Object Cache. To monitor Redis Object Cache performance, we can run the following command in the SSH console.

redis-cli monitor

This will output the real-time data of Object Caching used by WordPress.

redis-cli monitor working with WordPress

Video of Redis Object Cache for WordPress

Watch the video demo of the Redis Object Cache setup for the WordPress blog. I’ve recorded the step-by-step guide of the entire Redis Server guide in this tutorial.

Enable Redis Object Cache for WordPress Database Optimization

I hope you liked the video; please subscribe to our channel.

What’s next in the #CloudServer series?

Now that we’ve learned about setting up Redis Object Cache with WordPress. Next, we will manage the WordPress MySQL database using WP-Optimize Plugin.

Kushal Azza

Kushal Azza

Kushal Azza is a Google Certified IT Professional, Digital Content Creator, and Go-To Digital Marketer. He has over a decade of experience solving tech problems, troubleshooting, and creating digital solutions. Follow him on Twitter and LinkedIn.

5 thoughts on “Setup Redis Object Cache to Optimize WordPress Database”

  1. Hi Kushal, thanks for the post.

    What should I do if I need to prevent some pages or things to be cached?
    And what If I use a builder like Elementor? do I need to do something for it to works?

    Thanks again man.

    1. Hi Diego, as far as I know, the Redis Cache plugin does not have a feature to restrict any specific page. However, WordPress plugins and themes are ignored. Hence, the Elementor page builder queries will be ignored for caching.

    2. redis is caching object not the entire page. It means only the data.
      so you dont need to exclude any page nor you should afraid of that.

      If you real want to afraid , afraid of fastcgi woocommerce cache 😀

    1. Hi Ronak,

      You can use both Nginx and Redis for making WordPress powerful. Follow this guide –> WordPress on DigitalOcean.

      Instead of DO, you can use any SSD Cloud Server, however, I personally use and recommend DigitalOcean(DO) every time.

      Regards //Kushal

Leave a Reply

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