You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of the plugin checks if something on the DB needs to be updated in a very expensive way, in terms of db hits. Within my tests it used multiple reads and writes to only do a typical version check, like many other plugins do it in a similar way. Even a object-caching plugin can - by design - not help, with the current implementation of the Migrate class.
A typical wp-admin request produces 8-11 db hits related to Embed Privacy, which is not cool.
Example
The text was updated successfully, but these errors were encountered:
The current implementation of the plugin checks if something on the DB needs to be updated in a very expensive way, in terms of db hits. Within my tests it used multiple reads and writes to only do a typical version check, like many other plugins do it in a similar way. Even a object-caching plugin can - by design - not help, with the current implementation of the
Migrate class
.A typical
wp-admin
request produces 8-11 db hits related to Embed Privacy, which is not cool.Example
The text was updated successfully, but these errors were encountered: