From 5c4163400e19644adef4606f2d4ee6d07ab917c1 Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Mon, 14 Nov 2011 18:40:12 +0100 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fa0e1a23..854e16f8 100644 --- a/README.md +++ b/README.md @@ -13,10 +13,10 @@ Some terminology before we get started: * *Queues* are queues, in the computer science way. Technically, they are Redis lists where work is `rpush`'ed on and `lpop`'ed from. * *Jobs* are a definitions of work that can be carried out by a different - process. Technically, they are just plain old Python function calls, with + processes. Technically, they are just plain old Python function calls, with arguments and return values and the like. -* *Workers* are Python processes that pop off work from queues and start - executing them. They report back any return values or exceptions. +* *Workers* are processes that pop off work from queues and start + executing them. They report back return values or exceptions. To put work on queues, tag a Python function call as a job, like so: @@ -51,5 +51,5 @@ Simply use the following command to install the latest released version: If you want the cutting edge version (that may well be broken), use this: - pip install -e git+git@github.com:nvie/rq.git@master#egg=rdb + pip install -e git+git@github.com:nvie/rq.git@master#egg=rq