You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
576 B

  1. class PrecomputeFeedService < BaseService
  2. # Fill up a user's home/mentions feed from DB and return a subset
  3. # @param [Symbol] type :home or :mentions
  4. # @param [Account] account
  5. def call(type, account)
  6. instant_return = []
  7. Status.send("as_#{type}_timeline", account).limit(FeedManager::MAX_ITEMS).each do |status|
  8. next if FeedManager.instance.filter?(type, status, account)
  9. redis.zadd(FeedManager.instance.key(type, account.id), status.id, status.reblog? ? status.reblog_of_id : status.id)
  10. end
  11. end
  12. private
  13. def redis
  14. $redis
  15. end
  16. end