Say that at some point I enqueue a job that looks like this:
HardWorker.perform(command_id, user_id)
Is there any way I can remove all the jobs (from the Redis queue) which have a particular command_id
associated?
Say that at some point I enqueue a job that looks like this:
HardWorker.perform(command_id, user_id)
Is there any way I can remove all the jobs (from the Redis queue) which have a particular command_id
associated?