Performance issue with Multisite
-
It looks like the current version of the plugin has a bug for WordPress Multisite (perhaps single site as well?) where
Embed_Extended::update_db_check()
runs on every request.This is because it’s using
get_site_option()
to collect the currently installed version, butupdate_option()
to set it after an upgrade. This results in the plugin constantly clearing its cache. Switching toupdate_site_option()
seems to fix the problem.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.