Skip to content

Instantly share code, notes, and snippets.

@brupm
Created November 14, 2014 01:06
Show Gist options
  • Save brupm/dd9b1f8241252e45e7bb to your computer and use it in GitHub Desktop.
Save brupm/dd9b1f8241252e45e7bb to your computer and use it in GitHub Desktop.
kill jobs in resque
10_000.times do |n|
r.lrange(k, n * 1_000, (n + 1) * 1_000).each do |e|
next unless e =~ /JobToKill/
r.lrem(k, 1, e)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment