0
0
Fork 0

Fix slow distinct queries where grouped queries are faster (#15287)

About 2x speed-up on inboxes query
This commit is contained in:
Eugen Rochko 2020-12-07 12:08:30 +01:00 committed by GitHub
parent a8c471fcc0
commit 48bef17cc9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -81,7 +81,7 @@ class AccountsController < ApplicationController
end
def account_media_status_ids
@account.media_attachments.attached.reorder(nil).select(:status_id).distinct
@account.media_attachments.attached.reorder(nil).select(:status_id).group(:status_id)
end
def no_replies_scope