diff options
author | Brion Vibber <brion@pobox.com> | 2009-11-10 08:47:54 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-11-10 08:47:54 -0800 |
commit | 737fe763471bcb6ebd95c318363308a33e28e889 (patch) | |
tree | b9094b0adda4e666fa9480f547a80b0a54e027b5 /db/08to09.sql | |
parent | 9d0687b0559095f270a55af3467c53ad29bfd4c7 (diff) |
Performance fix for subscription/subscriber lists based on feedback from ops.
Extended subscription table indexes for subscriber and subscribed to include the created field, which is used to sort for display. This lets us skip a filesort and do the join much more efficiently.
Alter table from 08to09.sql needs to be run manually (though no ill effects if you forget other than not getting the perf improvement).
Diffstat (limited to 'db/08to09.sql')
-rw-r--r-- | db/08to09.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/db/08to09.sql b/db/08to09.sql index e6842225b..1d37a759d 100644 --- a/db/08to09.sql +++ b/db/08to09.sql @@ -45,3 +45,9 @@ create table login_token ( alter table fave drop index fave_user_id_idx, add index fave_user_id_idx (user_id,modified); + +alter table subscription + drop index subscription_subscriber_idx, + add index subscription_subscriber_idx (subscriber,created), + drop index subscription_subscribed_idx, + add index subscription_subscribed_idx (subscribed,created); |