我正在对我的数据库进行查询,这些数据库在我添加订单时变得非常慢。这是我打电话的代码:
Post.where(source_id: source_ids_array).page(1).per(100).order("position asc, external_created_at desc")
(我正在使用Kaminari进行分页)
这给了我以下sql:
Post Load (36537.8ms) SELECT "posts".* FROM "posts" WHERE "posts"."source_id" IN (17805, 18768, 20717, 17803, 17804, 18329, 20705, 19075, 19110, 19082, 18328) ORDER BY position asc, external_created_at desc LIMIT 100 OFFSET 0
但是,当我将查询修改为:
时Post.where(source_id: source_ids_array).page(1).per(100).order("position asc")
我得到以下sql:
Post Load (279.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."source_id" IN (17805, 18768, 20717, 17803, 17804, 18329, 20705, 19075, 19110, 19082, 18328) ORDER BY position asc LIMIT 100 OFFSET 0
这更快。
我的schema.db中的索引如下所示:
add_index "posts", ["external_created_at"], name: "index_posts_on_external_created_at", using: :btree
add_index "posts", ["position", "external_created_at"], name: "index_posts_on_position_and_external_created_at", using: :btree
add_index "posts", ["position"], name: "index_posts_on_position", using: :btree
如何加快查询速度?
编辑:这是我的EXPLAIN ANALYZE:
Limit (cost=633132.80..633133.05 rows=100 width=891) (actual time=31927.725..31927.751 rows=100 loops=1)
-> Sort (cost=633132.80..635226.42 rows=837446 width=891) (actual time=31927.720..31927.729 rows=100 loops=1)
Sort Key: "position", external_created_at
Sort Method: top-N heapsort Memory: 78kB
-> Bitmap Heap Scan on posts (cost=19878.94..601126.22 rows=837446 width=891) (actual time=487.399..30855.211 rows=858629 loops=1)
Recheck Cond: (source_id = ANY ('{17805,18768,20717,17803,17804,18329,20705,19075,19110,19082,18328}'::integer[]))
Rows Removed by Index Recheck: 1050547
-> Bitmap Index Scan on index_posts_on_source_id (cost=0.00..19669.58 rows=837446 width=0) (actual time=485.025..485.025 rows=927175 loops=1)
Index Cond: (source_id = ANY ('{17805,18768,20717,17803,17804,18329,20705,19075,19110,19082,18328}'::integer[]))
Total runtime: 31927.998 ms
答案 0 :(得分:2)
虽然没有很好的文档可以在创建索引时指定排序顺序:
add_index :posts, [:external_created_at, :position],
order: { position: :asc, external_created_at: :desc }
如果我们然后运行rake db:structure:dump
,我们可以看到它创建了以下SQL:
CREATE INDEX "index_posts_on_external_created_at_and_position"
ON "posts" ("external_created_at" DESC, "position" ASC);
请注意,我们不需要指定using: :btree
,因为Postgres默认使用B-tree或name:
。