gms_options spammed with duplicate BetterLinks rows
-
We noticed a very significant performance degradation of our website following an update to the plugin. We discovered that BetterLinks was adding duplicate rows into
gms_options
every time a request was made, leading to hundreds of thousands of rows loading with the site.We removed the plugin and cleaned it up with the following queries:
DELETE FROM gms_options WHERE option_name LIKE 'wp_betterlinks_%';
DELETE FROM gms_options WHERE option_name LIKE 'betterlinks_%';We’re unsure which update caused this regression, but it just doesn’t check for existing rows in our database before adding a new row (which doesn’t appear to be indexed).
If you discover the fix, you may want to clean up affected instances by removing duplicate rows during your version upgrade routine.
- The topic ‘gms_options spammed with duplicate BetterLinks rows’ is closed to new replies.