Last active
February 14, 2020 13:27
-
-
Save stadniklksndr/dee33796b6166f873bf38cb0118172c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Clear all jobs | |
* redis-cli flushdb | |
* Sidekiq.redis { |conn| conn.flushdb } | |
# Stats | |
* stats = Sidekiq::Stats.new | |
* stats.queues | |
# Clear by queue name | |
* queue = Sidekiq::Queue.new('queue_name') | |
* queue.count | |
* queue.clear | |
# Clear `retry` set | |
* Sidekiq::RetrySet.new.clear | |
# Clear `scheduled` jobs | |
* Sidekiq::ScheduledSet.new.clear | |
# Clear `processed` and `failed` jobs | |
* Sidekiq::Stats.new.reset | |
# Clear `dead` jobs | |
* Sidekiq::DeadSet.new.clear |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment