This commit is contained in:
Vincent Driessen 2011-11-26 13:10:04 +01:00
parent 068db4cb35
commit 767ad519c2
1 changed files with 21 additions and 32 deletions

View File

@ -12,14 +12,11 @@ and it is extremely simple to use.
First, run a Redis server, of course:
{% highlight console %}
$ redis-server
{% endhighlight %}
To put jobs on queues, you don't have to do anything special, just define
your typically lengthy or blocking function:
{% highlight python %}
import urllib2
def count_words_at_url(url):
@ -31,23 +28,17 @@ def count_words_at_url(url):
break
count += len(line.split())
return count
{% endhighlight %}
Then, create a RQ queue:
{% highlight python %}
import rq import *
use_redis()
q = Queue()
{% endhighlight %}
And enqueue the function call:
{% highlight python %}
from my_module import count_words_at_url
result = q.enqueue(
count_words_at_url, 'http://nvie.com')
{% endhighlight %}
result = q.enqueue(count_words_at_url, 'http://nvie.com')
For a more complete example, refer to the [docs][d]. But this is the essence.
@ -59,13 +50,11 @@ For a more complete example, refer to the [docs][d]. But this is the essence.
To start executing enqueued function calls in the background, start a worker
from your project's directory:
{% highlight console %}
$ rqworker
*** Listening for work on default
Got count_words_at_url('http://nvie.com') from default
Job result = 818
*** Listening for work on default
{% endhighlight %}
That's about it.