Last active
January 14, 2023 16:30
-
-
Save MaximeCulea/eb9eca3b7055a444865757f25159b6f4 to your computer and use it in GitHub Desktop.
Gather tips to optimize WooCommerce sites.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Optimize DB : WC action scheduler | |
DELETE FROM `wp_actionscheduler_actions` WHERE `status` = 'canceled' OR `status` = 'complete' OR `status` = 'failed'; | |
# Optimize Action Scheduler queue | |
# See the WP Cli cron command: https://gist.github.com/MaximeCulea/df0766f9e17105f03717f206a22a2d39#single-site |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment