What causes memory fragmentation in .NET

后端 未结 3 1472
南方客
南方客 2020-12-02 16:57

I am using Red Gates ANTS memory profiler to debug a memory leak. It keeps warning me that:

Memory Fragmentation may be causing .NET to reserver too

相关标签:
3条回答
  • 2020-12-02 17:10

    The .NET Framework 4.5.1, has the ability to explicitly compact the large object heap (LOH) during garbage collection.

    GCSettings.LargeObjectHeapCompactionMode = GCLargeObjectHeapCompactionMode.CompactOnce;
    GC.Collect();
    

    See more info in GCSettings.LargeObjectHeapCompactionMode

    0 讨论(0)
  • 2020-12-02 17:18

    The GC heap treats large object allocations differently. It doesn't compact them, but instead just combines adjacent free blocks (like a traditional unmanaged memory store).

    More info here: http://msdn.microsoft.com/en-us/magazine/cc534993.aspx

    So the best strategy with very large objects is to allocate them once and then hold on to them and reuse them.

    0 讨论(0)
  • 2020-12-02 17:33

    You know, I somewhat doubt the memory profiler here. The memory management system in .NET actually tries to defragment the heap for you by moving around memory (that's why you need to pin memory for it to be shared with an external DLL).

    Large memory allocations taken over longer periods of time is prone to more fragmentation. While small ephemeral (short) memory requests are unlikely to cause fragmentation in .NET.

    Here's also something worth thinking about. With the current GC of .NET, memory allocated close in time, is typically spaced close together in space. Which is the opposite of fragmentation. i.e. You should allocate memory the way you intend to access it.

    Is it a managed code only or does it contains stuff like P/Invoke, unmanaged memory (Marshal.AllocHGlobal) or stuff like GCHandle.Alloc(obj, GCHandleType.Pinned)?

    0 讨论(0)
提交回复
热议问题