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.
 
 
 
 

26 lines
514 B

# frozen_string_literal: true
require 'sidekiq-scheduler'
class Scheduler::FeedCleanupScheduler
include Sidekiq::Worker
def perform
logger.info 'Cleaning out home feeds of inactive users'
redis.pipelined do
inactive_users.pluck(:account_id).each do |account_id|
redis.del(FeedManager.instance.key(:home, account_id))
end
end
end
private
def inactive_users
User.confirmed.where('current_sign_in_at < ?', 14.days.ago)
end
def redis
Redis.current
end
end