Sneaky
Expensive
Bad for business and traffic
Wordfence:
Yoast SEO
WooCommerce
Large number of rows
Large data size of row content
681,005 characters
700kb
~240 characters
.09kb
- wp_options
- wp_postmeta
- wp_posts
- wp_comments
- Plugin tables
SELECT
COUNT(*) AS `Autoload_Row_Count`,
ROUND(
SUM(
LENGTH(
CONCAT(option_id, option_name, option_value, autoload)
)
)/1048567, 2
) AS `Autoload_Data_in_MB`
FROM wp_options
WHERE autoload = 'yes';
- Get the options table under 500 rows and 2MB if you can - especially for autoloading content
- Drill down into big tables with SQL queries to find the junk plugin data and delete it