large-object-heap
LOH internals wanted
I know, it is an implementation detail, and some people think it is forbidden to be interested into them. But I nevertheless want to find references for, and confirmation of, the following:[详细]
2023-02-26 23:47 分类:问答Heap fragmentation when using byte arrays
I have a C# 4.0 application (single producer/single consumer) which transfers huge amount of data in chunks. Although there\'s no new memory allocation I run out of memory after a while.开发者_Python百[详细]
2023-02-26 01:29 分类:问答Large Object Heap fragmentation: CLR has any solution to it?
If you application is such that it has to do lot of allocation/de-allocation of large size objects (>85000 Bytes), its eventually will cause memory fragmentation and you application will throw an Out[详细]
2023-02-15 16:49 分类:问答How to detect if the large object heap is causing the out of memory exception
I\'m having System.OutOfMemory exceptions in my .NET开发者_StackOverflow Windows Service. I\'m not sure what\'s causing it. I suspect fragmentation in the large object heap but i\'m not sure. How can[详细]
2023-02-14 12:11 分类:问答Garbage collection of LOH, WeakReferences, large objects
In my application I need to load large files (can beabout ~ 250 MB) into memory, I\'m doing it in a lazy way - when user ask to see a file - I\'m loading it. After that, every time user tries to acces[详细]
2023-02-13 23:53 分类:问答Determine limit for large object heap programmatically
Since it is recommended to use the IDisposal pattern for large objects, I am wondering, why there seems to be no reliable way to determine the limit, up from which an object is to be considered \"larg[详细]
2023-02-07 04:17 分类:问答Large Arrays, and LOH Fragmentation. What is the accepted convention?
I have an other active question HERE regarding some hopeless memory issues that possibly involve LOH Fragmentation among possibly other unknowns.[详细]
2022-12-22 01:56 分类:问答How can I know the ACTUAL maximum number of elements a .net array of a given type can be allocated?
I know that all arrays in .net are limited to 2 GB, under this premise, I try not to allocate more that n = ((2^31) - 1) / 8 doubles in an array. Nevertheless, that number of elements still doesn\'t s[详细]
2022-12-13 00:02 分类:问答