Skip to content

Instantly share code, notes, and snippets.

@superfeedr
Created May 25, 2010 22:00
Show Gist options
  • Save superfeedr/413752 to your computer and use it in GitHub Desktop.
Save superfeedr/413752 to your computer and use it in GitHub Desktop.
loop do
ids = $redis.rpoplpush("ring", "ring", 50)
items = $redis.get(ids)
ids.each do |item|
if item.time_to_fetch < now()
fetch(item)
else
# skip
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment