Fix grammar and typo in section 5.10

1. Fix grammar and a typo in section '5.10. Measure and guard the memory usage'
2. Add a link to Walmart Node.js Memory Leak from Joyent blog for context
This commit is contained in:
sagirk
2018-05-15 20:04:31 +05:30
parent d3cb716e25
commit bdd8f105bf

View File

@ -551,7 +551,7 @@ All statements above will return false if used with `===`
**TL;DR:** Node.js has controversial relationships with memory: the v8 engine has soft limits on memory usage (1.4GB) and there are known paths to leaks memory in Nodes code thus watching Nodes process memory is a must. In small apps, you may gauge memory periodically using shell commands but in medium-large app consider baking your memory watch into a robust monitoring system
**Otherwise:** Your process memory might leak a hundred megabytes a day like happened in Wallmart
**Otherwise:** Your process memory might leak a hundred megabytes a day like how it happened at [Walmart](https://www.joyent.com/blog/walmart-node-js-memory-leak)
🔗 [**Read More: Measure and guard the memory usage**](/sections/production/measurememory.md)