使用Chrome development tool查看代码内存泄露
- 2019 年 10 月 4 日
- 笔记
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://jerry.blog.csdn.net/article/details/100824362
Created by Jerry Wang on Jul 22, 2015
test source code:
<html> <script> var theThing = null; var replaceThing = function () { var priorThing = theThing; var unused = function () { if (priorThing) { console.log("hi"); } }; theThing = { longStr: new Array(10000000).join('Jerry'), // someMethod: function () { console.log("g"); } }; }; setInterval(replaceThing, 4000); </script>
任务管理器里若干个chrome.exe 进程:

其中的两个代码当前Chrome加载的扩展程序:


观察到内存迅速增加:

通过比较两个heap profile,发现引起内存泄露是因为code里的closure:

