mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 17:53:44 +08:00
PERF: improve category moderators query (#12538)
In the about page, we list a certain number of category moderators. This rewrites the SQL query used to retrieve the most recent category moderators in order to perform better with a large number of users/categories/category moderators. TIL: you can ORDER BY inside an ARRAY_AGG in postgres TIL: you can slide ARRAYS in postgres
This commit is contained in:
parent
db7be947df
commit
e8cad4bbf3
|
@ -83,32 +83,28 @@ class About
|
|||
def category_moderators
|
||||
allowed_cats = Guardian.new(@user).allowed_category_ids
|
||||
return [] if allowed_cats.blank?
|
||||
|
||||
cats_with_mods = Category.where.not(reviewable_by_group_id: nil).pluck(:id)
|
||||
|
||||
category_ids = cats_with_mods & allowed_cats
|
||||
return [] if category_ids.blank?
|
||||
|
||||
per_cat_limit = category_mods_limit / category_ids.size
|
||||
per_cat_limit = 1 if per_cat_limit < 1
|
||||
results = DB.query(<<~SQL, category_ids: category_ids, per_cat_limit: per_cat_limit)
|
||||
SELECT c.id category_id, user_ids
|
||||
FROM categories c
|
||||
CROSS JOIN LATERAL (
|
||||
SELECT ARRAY(
|
||||
SELECT u.id
|
||||
FROM users u
|
||||
JOIN group_users gu
|
||||
ON gu.group_id = c.reviewable_by_group_id AND gu.user_id = u.id
|
||||
ORDER BY last_seen_at DESC
|
||||
LIMIT :per_cat_limit
|
||||
) AS user_ids
|
||||
) user_ids
|
||||
WHERE c.id IN (:category_ids)
|
||||
|
||||
results = DB.query(<<~SQL, category_ids: category_ids)
|
||||
SELECT c.id category_id
|
||||
, (ARRAY_AGG(u.id ORDER BY u.last_seen_at DESC))[:#{per_cat_limit}] user_ids
|
||||
FROM categories c
|
||||
JOIN group_users gu ON gu.group_id = c.reviewable_by_group_id
|
||||
JOIN users u ON u.id = gu.user_id
|
||||
WHERE c.id IN (:category_ids)
|
||||
GROUP BY c.id
|
||||
ORDER BY c.position
|
||||
SQL
|
||||
moderators = {}
|
||||
User.where(id: results.map(&:user_ids).flatten.uniq).each do |user|
|
||||
moderators[user.id] = user
|
||||
end
|
||||
moderators
|
||||
|
||||
moderators = User.where(id: results.map(&:user_ids).flatten.uniq).map { |u| [u.id, u] }.to_h
|
||||
|
||||
results.map do |row|
|
||||
CategoryMods.new(row.category_id, row.user_ids.map { |id| moderators[id] })
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user