这是 Node.js 中已知的内存泄漏模式吗?
我正在开发一个项目,并且遇到内存泄漏,我没有找到使用节点检查器和 v8-profiler 模块找出这些泄漏的方法。所以我想知道是否存在导致内存泄漏的已知模式。
谢谢。
I'm working on a project and I'm experiencing memory leaks, I didn't find a way to figure out these leaks with node-inspector and v8-profiler modules. So I'm wondering if it exists known patterns that conduct to memory leaks.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NodeJS 中的泄漏模式与一般 JavaScript 的已知泄漏模式基本相同。
请注意 Node.js 中的闭包和循环引用。 查看这篇文章以获取有关该主题的更多信息。
Leak pattern in NodeJS are mostly the same as known leak pattern for general JavaScript.
Just be careful with Closure and Circular references in Node. Check this article for more information on the subject.