The code powering m.abunchtell.com https://m.abunchtell.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

20 行
589 B

  1. # frozen_string_literal: true
  2. class PrecomputeFeedService < BaseService
  3. # Fill up a user's home/mentions feed from DB and return a subset
  4. # @param [Symbol] type :home or :mentions
  5. # @param [Account] account
  6. def call(type, account)
  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.current
  15. end
  16. end