Updated Section sentence structure

This commit is contained in:
Bruno Scheufler
2017-12-11 19:47:26 +01:00
committed by GitHub
parent d21226ecaf
commit a0ebea6ad8

View File

@ -492,9 +492,9 @@ All statements above will return false if used with `===`
## ![✔] 5.3. Delegate anything possible (e.g. gzip, SSL) to a reverse proxy ## ![✔] 5.3. Delegate anything possible (e.g. gzip, SSL) to a reverse proxy
**TL;DR:** Node is awfully bad at doing CPU intensive tasks like gzipping, SSL termination, etc. Instead, use a real middleware services like nginx, HAproxy or cloud vendor services **TL;DR:** Node is awfully bad at doing CPU intensive tasks like gzipping, SSL termination, etc. You should use real middleware services like nginx, HAproxy or cloud vendor services instead
**Otherwise:** Your poor single thread will keep busy doing infrastructural tasks instead of dealing with your application core and performance will degrade accordingly **Otherwise:** Your poor single thread will stay busy doing infrastructural tasks instead of dealing with your application core and performance will degrade accordingly
🔗 [**Read More: Delegate anything possible (e.g. gzip, SSL) to a reverse proxy**](/sections/production/delegatetoproxy.md) 🔗 [**Read More: Delegate anything possible (e.g. gzip, SSL) to a reverse proxy**](/sections/production/delegatetoproxy.md)