Skip to:
During UMich load testing of dashboard tool, we've found the following two indices useful for the tool's performance:
create index dash_calendar_link_item_id_idx on dash_calendar_link (item_id);create index dash_news_link_item_id_idx on dash_news_link (item_id);
Will add those two indices into corresponding sql files.
r84580 added those two indices to multiple sql files.
During UMich load testing of dashboard tool, we've found the following two indices useful for the tool's performance:
create index dash_calendar_link_item_id_idx on dash_calendar_link (item_id);
create index dash_news_link_item_id_idx on dash_news_link (item_id);
Will add those two indices into corresponding sql files.