我的查询只需要.001秒而没有按部分排序。但是当我在查询中添加订单时,它需要大约.736秒的时间。太多时间了。我已将该列编入索引,但其未按预期工作。
以下是查询:
SELECT DISTINCT
n0_.id AS id0, n0_.published_at AS published_at1
FROM
news n0_
INNER JOIN
news_translations n1_ ON n0_.id = n1_.translatable_id
WHERE
((n0_.unpublished_at IS NOT NULL
AND (CURRENT_TIMESTAMP >= n0_.published_at
AND CURRENT_TIMESTAMP < n0_.unpublished_at))
OR (CURRENT_TIMESTAMP >= n0_.published_at
AND n0_.unpublished_at IS NULL))
AND
(n0_.status = 1
AND n0_.content_type_id = 1)
AND n1_.locale = 'zh_CN'
and n0_.id NOT IN (139476 , 226, 225, 224, 223, 218, 213, 69, 65, 62)
GROUP BY n0_.id
#ORDER BY n0_.published_at DESC
LIMIT 10 OFFSET 0;
以下是SHOW KEYS的输出:
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type
news 0 PRIMARY 1 id A 139656 NULL NULL BTREE
news 0 UNIQ_1DD399501204232D 1 comment_box_id A 139656 NULL NULL YES BTREE
news 1 IDX_1DD39950510C33D5 1 approval_type_id A 4 NULL NULL YES BTREE
news 1 IDX_1DD399501A445520 1 content_type_id A 36 NULL NULL YES BTREE
news 1 IDX_1DD39950A76ED395 1 user_id A 4 NULL NULL YES BTREE
news 1 IDX_1DD3995042A9A1DE 1 smiley_group_id A 4 NULL NULL YES BTREE
news 1 IDX_1DD39950B3FE509D 1 survey_id A 4 NULL NULL YES BTREE
news 1 IDX_1DD3995029C1004E 1 video_id A 4 NULL NULL YES BTREE
news 1 IDX_1DD399501CDF82CA 1 cover_image A 4 NULL NULL YES BTREE
news 1 IDX_1DD399504E7AF8F 1 gallery_id A 4 NULL NULL YES BTREE
news 1 IDX_1DD399506048130B 1 home_position_id A 4 NULL NULL YES BTREE
news 1 news_published_at_index 1 published_at A 139656 NULL NULL BTREE
答案 0 :(得分:1)
排序是一项昂贵的操作,因此排序很多行需要时间。一种方法是在订购前削减结果,但这并非总是可行。
还要考虑在表中可以找到哪些其他模式并使用它。我很确定,您的数据总是按id递增排序(也可能是已发布的时间)。正如我所看到的,您按照发布时间进行排序,因此如果数据按表格中的此列自然排序,您可以使用它。 但要确保是这样,所以没有例外。例如,如果你在插入新行时总是使用NOW(),那么它们很有可能被订购。