Replies: 1 comment 2 replies
-
When you create a new instance of a Queue you do not create a queue, just connects to it so that you can add or consume jobs.
https://github.com/OptimalBits/bull/blob/develop/REFERENCE.md#queueobliterate |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Let's say I create a queue named 'xxx'. Then for some reason my nodejs server crashes and restarts. Then, again, I create queue with same name 'xxx'. What will happen? Will it be an entirely new (empty) queue or will it get back Jobs hanging in redis?
How do I clean up garbage in redis created by bull? In those cases where, for example again, the node js server crashes and restarts. And I don't want any of saved queues and jobs.
Beta Was this translation helpful? Give feedback.
All reactions