Wp_options table overload
-
Hi Pavex,
Thanks for this great plugin.
While trying to optimize my site, I discovered something disturbing. It seems that each album is recorded in a transient in the wp_options table, with “autoload” set to “yes”. This creates an abnormally high weight of loaded transient on each page.
In my case, this query :
SELECT SUM(LENGTH(option_value)) FROM wp_options WHERE option_name LIKE '%pavex%' AND autoload LIKE '%yes%'
Resulting in > 2mo.
While normally the result of :
SELECT SUM(LENGTH(option_value)) FROM wp_options WHERE autoload LIKE '%yes%'
Should not be > 1mo to keep an efficient system.Is the autoload useful? Can we change the function to change it to “no” ?
Thanks
- The topic ‘Wp_options table overload’ is closed to new replies.