From 37e70625c3463afd2198ee1b7c7a4ad31ba18bae Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Tue, 14 Oct 2014 08:08:19 -0400 Subject: [PATCH] add note about job results --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index a54a2b5..4792580 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,11 @@ the `:jobs` queue. * `:jobs` - a queue of jobs for a specific manager, workers will try to pull from here before `all:jobs`, the values are just the job ids * `:jobs` - a queue of jobs for a specific worker, this is meant as a in progress queue for each worker, the workers will pull jobs into this queue from either `:jobs` or `all:jobs`, the values are just the job ids +### Results +`qw` Workers make no assumptions about the result of processing each job. It does not place finished job into a queue or database +or anything else. Once a job has been successfully processed by a Worker, that job is removed completely from queues and from redis. +The worker itself must properly store the results into a finished queue or database if that is what is required. + ## Basic Usage ```python