NodeJS memory consumption in an infinite loop

前端 未结 3 939
我在风中等你
我在风中等你 2021-02-05 12:35

I don\'t know if this is a bug with Node or V8, but if I run the following code the node process leaks memory. The GC never seems to kick in and in a few seconds it\'s consuming

3条回答
  •  难免孤独
    2021-02-05 12:55

    You are blocking node.js event loop by never returning to it.

    When you write something to a stream node.js does that asynchronously: it sends the write request, queues information about sent request in the stream's internal data-structures and awaits the callback that would notify it about the completion.

    If you are blocking event loop the callback will never be called (because incoming events are never processed) and auxiliary data structures queued in the stream will never be freed.

    The same can probably happen if you "overload" event loop by constantly scheduling your own events with nextTick/setInterval/setTimeout.

提交回复
热议问题