|
|
|
@ -4,9 +4,10 @@ class Feed
|
|
|
|
|
@account = account
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def get(limit, max_id = nil)
|
|
|
|
|
max_id = '+inf' if max_id.nil?
|
|
|
|
|
unhydrated = redis.zrevrangebyscore(key, "(#{max_id}", '-inf', limit: [0, limit], with_scores: true).collect(&:last).map(&:to_i)
|
|
|
|
|
def get(limit, max_id = nil, since_id = nil)
|
|
|
|
|
max_id = '+inf' if max_id.blank?
|
|
|
|
|
since_id = '-inf' if since_id.blank?
|
|
|
|
|
unhydrated = redis.zrevrangebyscore(key, "(#{max_id}", "(#{since_id}", limit: [0, limit], with_scores: true).collect(&:last).map(&:to_i)
|
|
|
|
|
status_map = {}
|
|
|
|
|
|
|
|
|
|
# If we're after most recent items and none are there, we need to precompute the feed
|
|
|
|
|