From bdd8f105bfffb5ef6f9885e9c27f749b56af9573 Mon Sep 17 00:00:00 2001 From: sagirk Date: Tue, 15 May 2018 20:04:31 +0530 Subject: [PATCH] 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 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81ea8739..abaa9095 100644 --- a/README.md +++ b/README.md @@ -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 Node’s code – thus watching Node’s 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)