High usage MySQL wp_options select
-
I’m using the plugin on my website (https://papelariarainha.com.br/) and we have ~13k products.
Our developers noticed that this plugin was slowing down the website, and one of the reason is some processes, for example:
“SkyVerge\WooCommerce\PluginFramework\v5_10_0\SV_WP_Background_Job_Handler::is_process_running”
This process is making this query 16 times, and it is running almost every 2 minutes:
UPDATE
wp_options
SEToption_value
= ? WHEREoption_name
= ?This one too:
SELECT COUNT(*) FROM wp_options WHERE option_name LIKE ? AND ( option_value LIKE ? OR option_value LIKE ? )
And also this one:
SELECT option_value FROM wp_options WHERE option_name LIKE ? AND ( option_value LIKE ? OR option_value LIKE ? ) ORDER BY option_id ASC LIMIT ?
- The topic ‘High usage MySQL wp_options select’ is closed to new replies.