Update sorting on api/statuses/retweets: adds notice_repeat_of_created_id_idx index to replace notice_repeatof_idx

This commit is contained in:
Brion Vibber
2010-12-17 15:13:09 -08:00
parent 04aa8bd70f
commit 1b90ed564a
3 changed files with 10 additions and 3 deletions

View File

@@ -137,11 +137,15 @@ create table notice (
-- For profile timelines...
index notice_profile_id_idx (profile_id,created,id),
-- For api/statuses/repeats...
index notice_repeat_of_created_id_idx (repeat_of, created, id),
-- Are these enough?
index notice_conversation_idx (conversation),
index notice_created_idx (created),
index notice_replyto_idx (reply_to),
index notice_repeatof_idx (repeat_of),
FULLTEXT(content)
) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci;