Sign in
Sign up
Explore
Enterprise
Education
Search
Help
Terms of use
About Us
Explore
Enterprise
Education
Gitee Premium
Gitee AI
AI teammates
Sign in
Sign up
Fetch the repository succeeded.
Donate
Please sign in before you donate.
Cancel
Sign in
Scan WeChat QR to Pay
Cancel
Complete
Prompt
Switch to Alipay.
OK
Cancel
Watch
Unwatch
Watching
Releases Only
Ignoring
3
Star
45
Fork
21
DreamCoders
/
CoderGuide
Code
Issues
1169
Pull Requests
0
Wiki
Insights
Pipelines
Service
JavaDoc
PHPDoc
Quality Analysis
Jenkins for Gitee
Tencent CloudBase
Tencent Cloud Serverless
悬镜安全
Aliyun SAE
Codeblitz
SBOM
Don’t show this again
Update failed. Please try again later!
Remove this flag
Content Risk Flag
This task is identified by
as the content contains sensitive information such as code security bugs, privacy leaks, etc., so it is only accessible to contributors of this repository.
请谈一下内存泄漏是什么,以及常见内存泄漏的原因,和排查的方法
Backlog
#IAG9LK
陌生人
owner
Opened this issue
2024-07-29 16:04
<p style="text-align: start;">常见原因:</p><ol><li style="text-align: start;">没有声明而意外创建的全局变量</li><li style="text-align: start;">被遗忘的定时器和回调函数,没有及时关闭定时器中的引用会一直留在内存中</li><li style="text-align: start;">闭包</li></ol><p style="text-align: start;">排查方法:</p><p style="text-align: start;">在<span style="background-color: rgb(248, 248, 250);"><code>Chrome浏览器</code></span>中,可以这样查看内存占用情况<br><span style="background-color: rgb(248, 248, 250);"><code>开发者工具</code></span> => <span style="background-color: rgb(248, 248, 250);"><code>Performance</code></span> => <span style="background-color: rgb(248, 248, 250);"><code>勾选Memory</code></span> => <span style="background-color: rgb(248, 248, 250);"><code>点左上角Record</code></span> => <span style="background-color: rgb(248, 248, 250);"><code>页面操作后点stop</code></span><br>然后就会显示这段时间内的内存使用情况了</p><ol><li style="text-align: start;">一次查看内存占用情况后,看当前内存占用趋势图,走势呈上升趋势,可以认为存在内存泄露</li><li style="text-align: start;">多次查看内存占用情况后截图对比,比较每次内存占用情况,如果呈上升趋势,也可以认为存在内存泄露</li></ol><p style="text-align: start;">在<span style="background-color: rgb(248, 248, 250);"><code>Node</code></span>中,使用 process.memoryUsage 方法查看内存情况<br>console.log(process.memoryUsage());</p><ul><li style="text-align: start;">heapUsed:用到的堆的部分。</li><li style="text-align: start;">rss(resident set size):所有内存占用,包括指令区和<a href="https://www.zhihu.com/search?q=%E5%A0%86%E6%A0%88&search_source=Entity&hybrid_search_source=Entity&hybrid_search_extra=%7B%22sourceType%22%3A%22article%22%2C%22sourceId%22%3A%22417023073%22%7D" target="">堆栈</a>。</li><li style="text-align: start;">heapTotal:"堆"占用的内存,包括用到的和没用到的。</li><li style="text-align: start;">external: V8 引擎内部的 C++ 对象占用的内存</li></ul><p style="text-align: start;">判断内存泄露以heapUsed字段为准</p>
<p style="text-align: start;">常见原因:</p><ol><li style="text-align: start;">没有声明而意外创建的全局变量</li><li style="text-align: start;">被遗忘的定时器和回调函数,没有及时关闭定时器中的引用会一直留在内存中</li><li style="text-align: start;">闭包</li></ol><p style="text-align: start;">排查方法:</p><p style="text-align: start;">在<span style="background-color: rgb(248, 248, 250);"><code>Chrome浏览器</code></span>中,可以这样查看内存占用情况<br><span style="background-color: rgb(248, 248, 250);"><code>开发者工具</code></span> => <span style="background-color: rgb(248, 248, 250);"><code>Performance</code></span> => <span style="background-color: rgb(248, 248, 250);"><code>勾选Memory</code></span> => <span style="background-color: rgb(248, 248, 250);"><code>点左上角Record</code></span> => <span style="background-color: rgb(248, 248, 250);"><code>页面操作后点stop</code></span><br>然后就会显示这段时间内的内存使用情况了</p><ol><li style="text-align: start;">一次查看内存占用情况后,看当前内存占用趋势图,走势呈上升趋势,可以认为存在内存泄露</li><li style="text-align: start;">多次查看内存占用情况后截图对比,比较每次内存占用情况,如果呈上升趋势,也可以认为存在内存泄露</li></ol><p style="text-align: start;">在<span style="background-color: rgb(248, 248, 250);"><code>Node</code></span>中,使用 process.memoryUsage 方法查看内存情况<br>console.log(process.memoryUsage());</p><ul><li style="text-align: start;">heapUsed:用到的堆的部分。</li><li style="text-align: start;">rss(resident set size):所有内存占用,包括指令区和<a href="https://www.zhihu.com/search?q=%E5%A0%86%E6%A0%88&search_source=Entity&hybrid_search_source=Entity&hybrid_search_extra=%7B%22sourceType%22%3A%22article%22%2C%22sourceId%22%3A%22417023073%22%7D" target="">堆栈</a>。</li><li style="text-align: start;">heapTotal:"堆"占用的内存,包括用到的和没用到的。</li><li style="text-align: start;">external: V8 引擎内部的 C++ 对象占用的内存</li></ul><p style="text-align: start;">判断内存泄露以heapUsed字段为准</p>
Comments (
0
)
Sign in
to comment
Status
Backlog
Backlog
Doing
Done
Closed
Assignees
Not set
Labels
Node
Not set
Label settings
Milestones
No related milestones
No related milestones
Pull Requests
None yet
None yet
Successfully merging a pull request will close this issue.
Branches
No related branch
No related branch
master
Planed to start   -   Planed to end
-
Top level
Not Top
Top Level: High
Top Level: Medium
Top Level: Low
Priority
Not specified
Serious
Main
Secondary
Unimportant
参与者(1)
1
https://gitee.com/DreamCoders/CoderGuide.git
git@gitee.com:DreamCoders/CoderGuide.git
DreamCoders
CoderGuide
CoderGuide
Going to Help Center
Search
Git 命令在线学习
如何在 Gitee 导入 GitHub 仓库
Git 仓库基础操作
企业版和社区版功能对比
SSH 公钥设置
如何处理代码冲突
仓库体积过大,如何减小?
如何找回被删除的仓库数据
Gitee 产品配额说明
GitHub仓库快速导入Gitee及同步更新
什么是 Release(发行版)
将 PHP 项目自动发布到 packagist.org
Comment
Repository Report
Back to the top
Login prompt
This operation requires login to the code cloud account. Please log in before operating.
Go to login
No account. Register