about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-06-21 05:10:07 +0000
committerzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-06-21 05:10:07 +0000
commitb98f6eff5e2e9b46720ec12dbd3c78ffe8a5cbae (patch)
treed9524127dedc69ab1e4e319b83c1b2209b205b7b
parent217b2e746bef9c2638288daf128c4fd897c5a346 (diff)
downloadunicorn-b98f6eff5e2e9b46720ec12dbd3c78ffe8a5cbae.tar.gz
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@251 19e92222-5c0b-0410-8929-a290d50e31e9
-rw-r--r--doc/site/src/docs/win32.page6
1 files changed, 2 insertions, 4 deletions
diff --git a/doc/site/src/docs/win32.page b/doc/site/src/docs/win32.page
index bdf809f..28e9140 100644
--- a/doc/site/src/docs/win32.page
+++ b/doc/site/src/docs/win32.page
@@ -97,19 +97,17 @@ Takes the name (-N) of the service to remove and then removes it from the list.
 
 h2. CPU Affinity
 
-@NOTE: This section is out of date.  Refer to the service::install --help.@
-
 Mongrel's win32 support actually is able to set the CPU affinity of a running
 Mongrel service.  This is pretty neat since it means if you're running a
 fancy SMP machine or a dual core that pretends to be SMP, then you can
 force Mongrel onto one of them and get a nice little boost.
 
-It's pretty easy to use, just pass the *-c or --cpu* option to the *install*
+It's pretty easy to use, just pass the *-u or --cpu* option to the *install*
 command and give a CPU of 1-X.  That means if you have 4 CPUs and you want
 Mongrel on #4 then do:
 
  $ mongrel_rails service::install -N myapp \
-     -c c:\my\path\to\myapp -p 4000 -e production -c 4
+     -c c:\my\path\to\myapp -p 4000 -e production -u 4
 
 Pretty much the same command, just one more option and you're done.