From 9d89d4b00ae1e9422a01fb6816f96c10f6a1b2b1 Mon Sep 17 00:00:00 2001 From: benoitc Date: Sun, 19 Feb 2012 11:58:30 +0100 Subject: [PATCH] close #287 . describe explicitely where TTIN & TTOU signals should be sent. --- doc/site/faq.rst | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/doc/site/faq.rst b/doc/site/faq.rst index 532e5a9c..eba313e0 100644 --- a/doc/site/faq.rst +++ b/doc/site/faq.rst @@ -83,13 +83,16 @@ Here is our recommendation for tuning the `number of workers`_. How can I change the number of workers dynamically? --------------------------------------------------- - To increase the worker count by one:: +TTIN and TTOU signals can be sent to the master to increase or decrease +the number of workers. - $ kill -TTIN $masterpid - - To decrease the worker count by one:: +To increase the worker count by one:: - $ kill -TTOU $masterpid + $ kill -TTIN $masterpid + +To decrease the worker count by one:: + + $ kill -TTOU $masterpid .. _design: /design.html .. _worker_class: /configure.html#worker-class