logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: c3ef5d5414ac1fee5471d7063616a4b72a408e11
parent: 57a3d71c90844a140ee8d6c1cdded67a4565c6ca
Author: alpaca-tc <alpaca-tc@alpaca.tc>
Date:   Thu, 11 May 2017 03:33:32 +0900

Add `account_id DESC` to optimize PrecomputeFeedService (#2967)


Diffstat:

Mapp/services/precompute_feed_service.rb3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app/services/precompute_feed_service.rb b/app/services/precompute_feed_service.rb @@ -6,7 +6,8 @@ class PrecomputeFeedService < BaseService # @param [Account] account def call(_, account) redis.pipelined do - Status.as_home_timeline(account).limit(FeedManager::MAX_ITEMS / 4).each do |status| + # NOTE: Added `id desc, account_id desc` to `ORDER BY` section to optimize query. + Status.as_home_timeline(account).order(account_id: :desc).limit(FeedManager::MAX_ITEMS / 4).each do |status| next if status.direct_visibility? || FeedManager.instance.filter?(:home, status, account.id) redis.zadd(FeedManager.instance.key(:home, account.id), status.id, status.reblog? ? status.reblog_of_id : status.id) end