Posts tagged memory
Memory Profiling Go Languaje
Feb 27th
If you are trying to debug a memory leak in your Go application, and need a way to determine which type is taking the most memory I.E a sorted list of (object type, total instances, total memory).
Runtime.MemStats doesn’t give details about the type, and goprof doesn’t seem to do memory profiling.
At this moment, the currente memory allocator only keeps track of whether or not the type can
contain a pointer
