Multiple db entries with wc_facebook_background_product_sync_job_
-
Hello,
I have noticed that the wp_options tables is flooded with entries:
wc_facebook_background_product_sync_job_
followed by an id.eg: wc_facebook_background_product_sync_job_0002255060670c4e99a173afe7659c11
Running:
SELECT COUNT(*) FROM wp_options WHERE option_name LIKE 'wc_facebook_background_product_sync_job_%'
returns 263.054 entries and the number keeps increasing slowly.
As a result, enabling the plugin seems to spike the mysql process cpu usage because queries like the following are pretty slow (3+ seconds) :
SELECT COUNT(*) FROM wp_options WHERE option_name LIKE 'wc_facebook_background_product_sync_job_%' AND ( option_value LIKE '%\"status\":\"queued\"%' OR option_value LIKE '%\"status\":\"processing\"%' )
Can I disable the plugin and safely delete these entries?
Why is this happening?
I have updated to the latest version of the plugin and there are about 3.000 products.Thank you!
- The topic ‘Multiple db entries with wc_facebook_background_product_sync_job_’ is closed to new replies.