Description
WooCommerce’s Order and Subscription pages allow store owners to search for orders and subscriptions by customer name, email, and other attributes. By default, it does a general substring search. For example, if you put OllieJones into the search box, it will search with LIKE '%OllieJones%'
using the leading wildcard %
. That’s astonishingly slow on sites with many orders.
Upon activation this plugin runs a background process to create a special-purpose index table, a table of trigrams, to speed up that search. Then it uses those trigrams to search for orders.
The downside: the trigram table takes database space and takes time to generate.
The orders page itself contains a very slow query (to be fixed in Woocommerce 9.0.0) to look up meta_keys. This fixes that query’s performance too.
Credits
Thanks to Leho Kraav for bringing this problem to my attention.
Thanks to Sebastian Sommer and Maxime Michaud for using early versions of the plugin on large stores, and to Maxime Michaud for creating the transation into French.
Thanks to Jetbrains for the use of their software development tools, especially PhpStorm. It’s hard to imagine how a plugin like this one could be developed without PhpStorm’s tools for exploring epic code bases like WordPress’s.
How can I learn more about making my WordPress site more efficient?
We offer several plugins to help with your site’s database efficiency. You can read about them here.
Installation
Follow the usual procedure for installing a plugin from the www.remarpro.com plugin repository.
FAQ
-
What’s the background for this?
-
See this WooCommerce issue for an example of the performance problem store owners have. See this Subscriptions issue for another example.
-
What’s the fix?
-
Build a trigram lookup table, maintain it, and use it for the queries.
-
How much space does the trigram lookup table take?
-
It takes about 5-10KiB per order, as MariaDB / MySQL database storage, counting both data and indexes. So, if your site has a million orders, the table will take something like 5-10 GiB.
-
How long does it take to generate trigram lookup table?
-
When you activate the plugin, it starts generating the table in the background. Everything continues as normal while the plugin is generating the table.
Generating the table seems to take about ten seconds (in the background) for every thousand orders.
-
Does it work with High Performance Order Storage (HPOS)?
-
Yes.
-
Does it work with pre-HPOS order storage?
-
Yes.
-
The lookup table seems to be out of date. I can’t find recent orders. What do I do?
-
- Let the author know by creating an issue at https://github.com/OllieJones/fast-woo-order-lookup/issues
- Deactivate, then activate the plugin. This rebuilds the lookup table.
-
What is this wp_fwol table created by the plugin?
-
This table, named with an abbreviation for “Fast Woo Order Lookup”, contains the trigram lookups. It has a terse name to keep queries short. It is dropped automatically if you deactivate the plugin.
-
My store only has a few hundred orders. Do I need this plugin ?
-
This plugin addresses database performance problems that only show themselves on stores with many tens of thousands of orders. If your store is smaller than that you probably don’t need it.
Wise owners of rapidly growing stores return regularly to examine their site performance. If your site is still small, it’s better to wait until you actually need performance-enhancing plugins and other features. Installing them “just in case” is ineffective.
Reviews
Contributors & Developers
“Fast Woo Order Lookup” is open source software. The following people have contributed to this plugin.
Contributors“Fast Woo Order Lookup” has been translated into 3 locales. Thank you to the translators for their contributions.
Translate “Fast Woo Order Lookup” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
1.1.3 October 7, 2024
Handle tables and colums with character sets other than $wpdb->charset.
1.1.1 August 12, 2024
- Limit batch runtime to 25 seconds. Include a cronjob shell script to purge stale ActionScheduler actions.
1.1.0 August 11, 2024
- Some MariaDB / MySQL versions implicitly cast integers to latin1 strings causing problems. Explicit casting fixes the issue.