mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
82aaedec46
make regeneration worker unique, (only schedule/execute once at a time)
22 lines
649 B
Ruby
22 lines
649 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PrecomputeFeedService < BaseService
|
|
# Fill up a user's home/mentions feed from DB and return a subset
|
|
# @param [Symbol] type :home or :mentions
|
|
# @param [Account] account
|
|
def call(_, account)
|
|
redis.pipelined do
|
|
Status.as_home_timeline(account).limit(FeedManager::MAX_ITEMS / 4).each do |status|
|
|
next if status.direct_visibility? || FeedManager.instance.filter?(:home, status, account)
|
|
redis.zadd(FeedManager.instance.key(:home, account.id), status.id, status.reblog? ? status.reblog_of_id : status.id)
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def redis
|
|
Redis.current
|
|
end
|
|
end
|