.net应用程序导致内存碎片
据我所知,.NET 应用程序(不使用任何未修改的代码)可能导致内存碎片的唯一方法是通过大对象堆。有没有什么方法可以检测您的应用程序是否正在产生内存碎片并无论如何避免它?
I understand that only way a .NET application ( that does not use any unamanged code) can cause memory fragmentation is by large object heap. Are there any ways of detecting if your application is fragmenting memory and anyways of avoiding it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1 和 2 在实践中可能会很困难,但老实说,您会谈论大对象,而 GC 在这方面确实做得很好。
1 and 2 might be tough in practice but honestly, you'd be talking about BIG objects and the GC really does a good job with all this.