From dd689dab718cfe48f6614d5cdce33350b0ebfebf Mon Sep 17 00:00:00 2001 From: Josh W Lewis Date: Fri, 28 Feb 2014 23:14:21 -0600 Subject: [PATCH] Minor copy edits in DEPLOYMENT.md --- DEPLOYMENT.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md index 18348409..6ecbb776 100644 --- a/DEPLOYMENT.md +++ b/DEPLOYMENT.md @@ -17,7 +17,7 @@ Welcome back! ## Single vs Cluster mode -Puma was originall concieved as a thread-only webserver, but grew the ability to +Puma was originally concieved as a thread-only webserver, but grew the ability to also use processes in version 2. Here are some rules of thumb: @@ -43,7 +43,7 @@ Here are some rules of thumb: **How do you know if you're got enough (or too many workers)?** A good question. Due to MRI's GIL, only one thread can be executing at a time. -But since so many apps are waiting on IO from DBs, etc, they can utilize threads +But since so many apps are waiting on IO from DBs, etc., they can utilize threads to make better use of the process. The rule of thumb is you never want processes that are pegged all the time. This