Can the worker push tasks back onto the queue e.g. using
r.lpush('tasks',mytask)? This would be useful in a try-catch where the worker fails its task and needs to post it back.
Can the worker send its results back to Redis, it is just r.lpush('finished',...)?
Quick questions:
Can the worker push tasks back onto the queue e.g. using r.lpush('tasks',mytask)? This would be useful in a try-catch where the worker fails its task and needs to post it back.
Can the worker send its results back to Redis, it is just r.lpush('finished',...)?