Node.js performance and memory leak

I ran into some weirdness in node.js, with a prerendering application reaction. Here is the memory profiling through newrelic:

Memory statistics via newrelic

As you can see, once per hour, the GC frees up memory when it reaches 1 GB. Is this normal for node.js (v0.12.x) or is something wrong?

PS I read about a memory leak from newrelic, but disabling it gives the same results.

+4
source share
2 answers

This is not a JS host, this is a JS v8 engine .

, #perfmatters (/), javascript, , , .

Youtube: McAnlis

Node.js :

+2

. , , . ,

+1

Source: https://habr.com/ru/post/1608883/


All Articles