Skip to content

Commit

Permalink
Fix terminology.
Browse files Browse the repository at this point in the history
  • Loading branch information
nvie committed Nov 15, 2011
1 parent 83e29ca commit f15f6d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ a background process:

Notice anything? There's nothing special about a job! Any Python function can
be put on an RQ queue, as long as the function is in a module that is
accessible from the worker process.
importable from the worker process.

To calculate the 36th Fibonacci number in the background, simply do this:

Expand All @@ -42,7 +42,7 @@ own desire. Common patterns are to name your queues after priorities (e.g.
# The worker

**NOTE: You currently need to create the worker yourself, which is extremely
easy, but RQ will create a custom script soon that can be used to start
easy, but RQ will include a custom script soon that can be used to start
arbitrary workers without writing any code.**

Creating a worker daemon is also extremely easy. Create a file `worker.py`
Expand Down

0 comments on commit f15f6d7

Please sign in to comment.