javascript 中查找内存使用情况的工具?
在 Chrome 任务管理器中,我注意到我的应用程序使用了大约 75,000k 内存,这似乎有点高。是否有一个工具可以显示内存中的对象,以便我可以识别我在哪里滥用对象,甚至可能泄漏内存?
In the Chrome task manager I'm noticing that my app is using around 75,000k memory, which seems a little high. Is there a tool which will show the objects that are in memory, so that I can identify where I am misusing objects, or possibly even leaking memory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Chrome DOM Inspector 中,您可以点击
Profiles
->快照
。它让您了解页面的内存映射、使用量等,包括引用计数和对象大小。In the Chrome DOM Inspector, you can click
Profiles
->Snapshot
. It gives you an idea of the memory map of your page, what uses how much and etc, including reference count and object size.之前已经有人问过这个问题:Firefox 的 Javascript 内存分析器
看看 Mozilla 的性能工具: http://www-archive.mozilla.org/performance/tools.html
This has been asked before: Javascript memory profiler for Firefox
Take a look at Mozilla's performance tools: http://www-archive.mozilla.org/performance/tools.html