服务器 - 了解哪些脚本正在运行及其内存使用情况
我有相当大的应用程序,现在我发现存在严重的内存泄漏,是否有某种软件或其他东西可以让我查看当前执行的脚本及其大小? 我正在使用 apache 如果有帮助的话。
谢谢。
I have quite large application, and now I'm seeing there's a bad memory leak, is there some sort of software, or something which allows me to see the current executed scripts and their size?
I'm using apache if that helps.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你见过
top(1)
吗?M
键将按内存使用情况排序。请特别注意RSS
列,它显示了进程的驻留集大小 - 进程大约占用了多少 RAM。Have you seen
top(1)
? TheM
key will sort by memory usage. Pay most attention to theRSS
column, it shows you the Resident Set Size of the process -- roughly how much RAM the process is taking up.