Skip to content

Instantly share code, notes, and snippets.

@MatthewRDodds
Last active August 29, 2015 14:11
Show Gist options
  • Save MatthewRDodds/06e1de1c2854272b173f to your computer and use it in GitHub Desktop.
Save MatthewRDodds/06e1de1c2854272b173f to your computer and use it in GitHub Desktop.
Clear all named queues
require 'sidekiq'
Sidekiq.configure_server do |config|
config.redis = { url: ENV['REDIS_URL'] }
end
Sidekiq.redis do |conn|
conn.smembers('queues').each do |q|
# Sidekiq::Queue.new(q).clear
puts q
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment