Skip to content

Instantly share code, notes, and snippets.

@fabioyamate
Created June 1, 2012 20:44
Show Gist options
  • Save fabioyamate/2855037 to your computer and use it in GitHub Desktop.
Save fabioyamate/2855037 to your computer and use it in GitHub Desktop.
cleanup resque retry
Redis.new.tap { |redis|
["resque:delayed*", "resque:resque-retry*", "resque:failure_resque-retry*"].map { |rk|
redis.keys(rk).map { |k| redis.del(k) }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment