Unfortunately, the database query could turn out very inefficient and I did not manage to find a way to improve that. Furthermore, there were still behavior inconsistencies between fetching the timeline from Redis and fetching it from Postgres.
		
			
				
	
	
		
			13 lines
		
	
	
		
			225 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			225 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class HomeFeed < Feed
 | 
						|
  def initialize(account)
 | 
						|
    @account = account
 | 
						|
    super(:home, account.id)
 | 
						|
  end
 | 
						|
 | 
						|
  def regenerating?
 | 
						|
    redis.exists?("account:#{@account.id}:regeneration")
 | 
						|
  end
 | 
						|
end
 |