From c66f202460b28a83390e1eea8f70b2479f7bdee9 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Sun, 7 Apr 2019 16:32:29 +0700 Subject: [PATCH] Added docs about running workers in production --- docs/docs/workers.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/docs/workers.md b/docs/docs/workers.md index 877788b..732f75e 100644 --- a/docs/docs/workers.md +++ b/docs/docs/workers.md @@ -29,6 +29,9 @@ Each worker will process a single job at a time. Within a worker, there is no concurrent processing going on. If you want to perform jobs concurrently, simply start more workers. +You should use process managers like [Supervisor](/patterns/supervisor/) or +(systemd)[https://www.freedesktop.org/wiki/Software/systemd/] to run RQ workers in production. + ### Burst Mode