What's the node.js memory breakdown?

后端 未结 1 1410
一生所求
一生所求 2021-02-01 06:00

We are deploying a Node.js application. This app seems to be consuming way more RSS memory than it should. So we started to dive into things and we found the following, thanks t

相关标签:
1条回答
  • 2021-02-01 06:37

    Without knowing what your app is doing, it is impossible to comment on this.

    If the V8 heap usage is significantly lower than the RSS, then yes, it must be external buffers and other memory used by non-V8 objects.

    Can you make some code public?

    0 讨论(0)
提交回复
热议问题