本文介绍了我可以从WinDbg运行.NET垃圾回收吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在研究为什么一个托管进程使用大量内存。有没有办法从WinDbg运行 GC.Collect(3),这样我就可以专注于实际的内存分配?

解决方案

我不认为有任何方法可以从WinDbg运行.NET垃圾回收,但我也不认为这是必要的。



请参阅,以获取有关查找堆中的内容的信息。



其他可能有用的链接:




>

I'm looking into why a managed process is using a lot of memory. Is there a way to run GC.Collect(3) from WinDbg, so that I can focus on the actual memory allocation?

解决方案

I don't think there is any way to run a .NET garbage collection from WinDbg, but I also don't think it is necessary.

See Rico Mariani's Performance Tidbits - Tracking down managed memory leaks (how to find a GC leak) for information about finding out what kind of stuff is on your heap.

Additional possibly useful links:

这篇关于我可以从WinDbg运行.NET垃圾回收吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 18:57