Adam RasheedFrontend Software Engineer

  • Home
  • Blog
  • How to Speed up Search on WordPress site sites with 1,000+ pages

How to Speed up Search on WordPress site sites with 1,000+ pages

December 4, 2017

Why WordPress Sites Slow Down as They Grow

As your website grows beyond a typical site with a handful of pages to the like of 1,000+ or even 10,000+ pages, your site will inevitably slow down due to a couple of reasons which include: a mishmash of spaghetti code that started to pile up as your code was getting fixed, and Your site having to query through thousands is not millions of lines of the database.

What if You have a Site with 100k+ pages?

If you take on client work, you may one day get a client that has a 100k+ page wordpress site that needs to be optimized. Funny thing, that’s exactly what happened to me. Now, if you have a well-coded theme and are one a good host like DigitalOcean (use this link and get $10 credit for free) there shouldn’t be too much of a problem in the trouble happens with the search bar on your site.

With a site of this scale, WordPress literally has to query through millions of rows in your database to retrieve a specific page your user search for. Luckily, there’s a fix to drastically speed up the search function on your site.

How to Fix The Problem and Speed Up Your Search

While WordPress has some great functionalities baked right in, you need to make sure you are optimizing as much as you can when scaling up. Besides making sure you have a good host, your theme is well-coded, and you’re using a CDN, you should look improving/outsourcing some of the functionality of your site. For the sake of this post, we’re going to talk about using ElasticSearch to drastically speed up the search functionality of your site.

Elastic Search Can Speed Up Queries

Elastic-search is an open-source, highly scalable search engine that you can use in a variety of applications. The main difference between ElasticSearch and a typical WordPress search functionality is that elastic-search is blazing-fast even at extremely large-scale.

Use ElasticPress Plugin

As with a lot of other solutions, there’s a wordpress plugin for elastic search as well, and it’s called ElasticPress. While I was working on a large scale wordpress project, Tate Lucas of Dot Dash told me about it and implemented into the project. Later that month I spoke at a local WordCamp, and met Vasken Hauri, the VP of engineering at 10Up, the company that created ElasticPress, and spoke with him about it. Since this experience, I’ve been a huge fan of it. (Also, big shout out to Tate: Thanks for bringing me on for the project! It was great working with you!)

Simply put, Elasticpress uses WP_Query to fetch info from elasticsearch instead of the normal MySQL database it would look at. More simply put, ElasticPress replaces your default wordpress search engine with a better one.

Use Search as a Service to Host Your Data

Now that you’ve got a way to index your searches in a faster method, you need somewhere to store it. This is where a Search as a Service like Searchly comes in. It powers the backend of your ElasticPress plugin, and even offers analytics, which can be a very powerful tool to help you determine how to better present your data and even better market your product or service. You wouldn’t want to have your cache hosted on the same server your website is on as that would substantially slow down your site (especially if you’re on a shared host).

Conclusion

If you’re working on a large-scale WordPress project. Elasticpress and a good Search as a Service tool like are invaluable options to speeding up your search and keeping your users happy.

Useful Links