You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Vincent Driessen 56fc74118e Get rid of the formal definition. We're not a lawyer agency here. 13 years ago
examples Add example and README updates. 13 years ago
rq Oops, fix some old references to current_connection. 13 years ago
tests Refactor the whole Redis connection stuff to be just as easy as in RDB. 13 years ago
.gitignore Add some project meta stuff. 13 years ago
README.md Get rid of the formal definition. We're not a lawyer agency here. 13 years ago
run_tests Add some project meta stuff. 13 years ago
setup.py Make it an actual PyPI-managable Python package. 13 years ago

README.md

WARNING: DON'T USE THIS IN PRODUCTION (yet)

rq — Simple job queues for Python

rq is an attempt at a lightweight Python job queue, using Redis as the queue provider.

Putting jobs on queues

To put work on queues, tag a Python function call as a job, like so:

@job('default')
def slow_fib(n):
    if n <= 1:
        return 1
    else:
        return slow_fib(n-1) + slow_fib(n-2)

You can still call the function synchronously:

from fib import slow_fib
slow_fib(4)

You can find an example implementation in the examples/ directory. To run it, open three terminal windows and run the following commands in them:

  1. python example/run_worker.py
  2. python example/run_worker.py
  3. python example/run_example.py

This starts two workers and starts crunching the fibonacci calculations in the background, while the script shows the crunched data updates every second.

Installation

Simply use the following command to install the latest released version:

pip install rq

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=rq