From 552b576eb4b861732dc808f02a084967ae021da8 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Thu, 9 Oct 2014 17:24:11 -0400 Subject: [PATCH] use backticks --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index edfc4e2..6418c8d 100644 --- a/README.md +++ b/README.md @@ -38,12 +38,12 @@ manager = Manager('__main__.target') ### Queues There are a few different queues that are used. The job queues are just redis lists, manager/worker lists are sets and jobs are hashes. -* "all:managers" - a set of all managers -* "all:jobs" - a queue that all workers can pull jobs from, the values are just the job ids -* "job:" - a hash of the job data -* ":workers" - a set of all workers belonging to a given manager -* ":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 +* `all:managers` - a set of all managers +* `all:jobs` - a queue that all workers can pull jobs from, the values are just the job ids +* `job:` - a hash of the job data +* `:workers` - a set of all workers belonging to a given manager +* `: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 ## Basic Usage