large-object-heap
Visualizing Large Object Heap Fragmentation [closed]
Closed. This question is seeking recommendations for books, tools, software libraries, and more. It does not meet Stack Overflow guidelines. It is not currently accepting answers.[详细]
2023-04-03 23:00 分类:问答Processing big strings, Is this Large Object Heap Fragmentation?
I have a .NET 3.5 Application A function is running a million times It\'s doing search & replace & regex operations in 1MB+ strings (different sized strings)[详细]
2023-04-03 20:41 分类:问答Why is large object heap mostly empty?
Why does .NET memory management create such a large object heap? Most of it seems to be empty. Is this something to b开发者_如何学运维e concerned about?[详细]
2023-03-23 01:17 分类:问答What advantage is there to only collecting large-object-heap objects with Generation 2?
I understand that generational garbage collection improves performance, since Any object will have to be moved at most twice in non-Gen2 collections, and Gen2 collections are rare.[详细]
2023-03-15 01:13 分类:问答Reading large strings from database without fragmenting large object heap
I have data database containing some rather large strings, each of which holds a serialized hierarchical data collection (data is stored as strings rather than as a binary stream to allow interaction[详细]
2023-03-10 07:09 分类:问答.net application causing memory fragmentation
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 a开发者_StackOverf[详细]
2023-03-08 14:40 分类:问答C#: Will GC collect if it needs memory, or will it give out of memory exception?
I have a loop in my code that generates many byte[] arrays (around 1 to 2 MB each), fills them with data, and then discard the reference. So, even though the reference is only held for a[详细]
2023-03-07 06:25 分类:问答caching search results in session vs keeping large object heap clean
Ok so I\'ve been working on an ASP.NET project for a while and it seems I\'ve made some bad design choices that are coming back to haunt me as the project keeps on getting bigger and bigger in terms o[详细]
2023-03-06 20:56 分类:问答LOH profiling says GC root objects (System.Object) are source of memory leak
I have a HttpHandler which is called frequently. It uses Entity Framework to accomplish its task. There\'s slow increasing in used memory by the w3p.exe of this web application (it has a separate app[详细]
2023-03-06 08:08 分类:问答Large Object Heap friendly IDictionary
We have an application that holds large numbers of objects in several Dictionarys, some of which grow continually during the lifetime of the app (trading application with lots of instruments and conti[详细]
2023-03-03 15:13 分类:问答