1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Minor copy edits in DEPLOYMENT.md

This commit is contained in:
Josh W Lewis 2014-02-28 23:14:21 -06:00
parent a21c36e67a
commit dd689dab71

View file

@ -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