about summary refs log tree commit homepage
path: root/TUNING
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-07-15 22:03:53 +0000
committerEric Wong <e@80x24.org>2015-07-15 22:03:53 +0000
commit4e7cab9f1727eccd90780d1ceb14948e0ace36a6 (patch)
tree9746e1c785ea12e6dd0170d0e83d8063fc1c8217 /TUNING
parent4ae3f3e34c13f4df8540f5bce3a002c5c2226f80 (diff)
downloadunicorn-4e7cab9f1727eccd90780d1ceb14948e0ace36a6.tar.gz
They'll continue to be maintained, but we're no longer advertising
them.  Also, favor lowercase "unicorn" while we're at it since that
matches the executable and gem name to avoid unnecessary escaping
for RDoc.
Diffstat (limited to 'TUNING')
-rw-r--r--TUNING10
1 files changed, 5 insertions, 5 deletions
diff --git a/TUNING b/TUNING
index 6a6d7db..247090b 100644
--- a/TUNING
+++ b/TUNING
@@ -1,10 +1,10 @@
-= Tuning \Unicorn
+= Tuning unicorn
 
-\Unicorn performance is generally as good as a (mostly) Ruby web server
+unicorn performance is generally as good as a (mostly) Ruby web server
 can provide.  Most often the performance bottleneck is in the web
 application running on Unicorn rather than Unicorn itself.
 
-== \Unicorn Configuration
+== unicorn Configuration
 
 See Unicorn::Configurator for details on the config file format.
 +worker_processes+ is the most-commonly needed tuning parameter.
@@ -14,7 +14,7 @@ See Unicorn::Configurator for details on the config file format.
 * worker_processes should be scaled to the number of processes your
   backend system(s) can support.  DO NOT scale it to the number of
   external network clients your application expects to be serving.
-  \Unicorn is NOT for serving slow clients, that is the job of nginx.
+  unicorn is NOT for serving slow clients, that is the job of nginx.
 
 * worker_processes should be *at* *least* the number of CPU cores on
   a dedicated server (unless you do not have enough memory).
@@ -58,7 +58,7 @@ See Unicorn::Configurator for details on the config file format.
 * UNIX domain sockets are slightly faster than TCP sockets, but only
   work if nginx is on the same machine.
 
-== Other \Unicorn settings
+== Other unicorn settings
 
 * Setting "preload_app true" can allow copy-on-write-friendly GC to
   be used to save memory.  It will probably not work out of the box with