Brings site to a crawl creating autoload transients in wp_options
-
Just posting this in case other’s run into it. I’ve switched to another solution.
This plugin seems to set 1000’s of transients in the wp_options with autoload set to yes. Which within a few days means every page load was autoloading 5000 options. Yikes.
I temporaryily fix would be to set these to not autoload
UPDATE wp_options SET autoload=’No’ WHEREoption_name
LIKE “_transient_%”However, after that it just created 1000’s of new transients within a few days.
I gave up before looking at fixing the code, but it shouldn’t be too hard a fix.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Brings site to a crawl creating autoload transients in wp_options’ is closed to new replies.