mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 04:34:13 -06:00
PERF: Help postgres make use of index in Post.summary
.
This commit is contained in:
parent
5cef4e281b
commit
ac80360bea
@ -349,13 +349,22 @@ class Post < ActiveRecord::Base
|
||||
|
||||
# percent rank has tons of ties
|
||||
where(topic_id: topic_id)
|
||||
.where(["(post_number = 1) or id in (
|
||||
SELECT p1.id
|
||||
FROM posts p1
|
||||
WHERE p1.percent_rank <= ? AND
|
||||
p1.topic_id = #{topic_id}
|
||||
ORDER BY p1.percent_rank
|
||||
LIMIT ?
|
||||
.where([
|
||||
"id = ANY(
|
||||
(
|
||||
SELECT posts.id
|
||||
FROM posts
|
||||
WHERE posts.topic_id = #{topic_id.to_i}
|
||||
AND post_number = 1
|
||||
) UNION
|
||||
(
|
||||
SELECT p1.id
|
||||
FROM posts p1
|
||||
WHERE p1.percent_rank <= ?
|
||||
AND p1.topic_id = #{topic_id.to_i}
|
||||
ORDER BY p1.percent_rank
|
||||
LIMIT ?
|
||||
)
|
||||
)",
|
||||
SiteSetting.summary_percent_filter.to_f / 100.0,
|
||||
SiteSetting.summary_max_results
|
||||
|
Loading…
Reference in New Issue
Block a user