mirror of https://github.com/rq/rq.git
Update outdated sample codes in README.md
* Use explicit connection management instead of `use_connection()`. * Use `rq worker` instead of `rqworker`.
This commit is contained in:
parent
a14041ae1a
commit
b92bea9398
|
@ -38,9 +38,10 @@ You do use the excellent [requests][r] package, don't you?
|
||||||
Then, create an RQ queue:
|
Then, create an RQ queue:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
from rq import Queue, use_connection
|
from redis import Redis
|
||||||
use_connection()
|
from rq import Queue
|
||||||
q = Queue()
|
|
||||||
|
q = Queue(connection=Redis())
|
||||||
```
|
```
|
||||||
|
|
||||||
And enqueue the function call:
|
And enqueue the function call:
|
||||||
|
@ -59,7 +60,7 @@ To start executing enqueued function calls in the background, start a worker
|
||||||
from your project's directory:
|
from your project's directory:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ rqworker
|
$ rq worker
|
||||||
*** Listening for work on default
|
*** Listening for work on default
|
||||||
Got count_words_at_url('http://nvie.com') from default
|
Got count_words_at_url('http://nvie.com') from default
|
||||||
Job result = 818
|
Job result = 818
|
||||||
|
|
Loading…
Reference in New Issue