How to remove a specific job from Redis job queue -
i'm new redis rudimentary question.
i'm considering creating redis job queue using list. jobs json-encoded objects.
i realize can use lpop
, rpush
managing queue. can use rpoplpush
when using multiple lists (e.g "queued", "processing" , "completed").
let's have worker processes images steadily going through "queued" list. let's client has deleted image front-end, before particular job has begun process. how delete job "queued" list worker doesn't waste time processing it?
in other words, how can index individual jobs in job queue?
Comments
Post a Comment