Get rid of the formal definition. We're not a lawyer agency here.

This commit is contained in:
Vincent Driessen 2011-11-15 00:22:24 +01:00
parent 227e107a82
commit 56fc74118e
1 changed files with 0 additions and 10 deletions

View File

@ -8,16 +8,6 @@ queue provider.
# Putting jobs on queues
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
processes. Technically, they are just plain old Python function calls, with
arguments and return values and the like.
* *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:
@job('default')