From f15f6d784306bcc0b1c0da8effe0cb1252879d7c Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Tue, 15 Nov 2011 23:31:01 +0100 Subject: [PATCH] Fix terminology. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 21f9ab9..96ca726 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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`