mirror of
https://github.com/goldbergyoni/nodebestpractices.git
synced 2025-11-02 02:55:40 +08:00
Updated Section sentence structure
This commit is contained in:
@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user