GC performance in Erlang
问题 I've started programming erlang recently and there are a few things I want to understand regarding GC. As far as I understand there is a generational GC for the private heap of each process and a reference counting GC for the global shared heap. What I would like to know is if there is anyway to get: How many number of collection cycles? How many bytes are allocated and deallocated, on a global level or process level? What are the private heaps, and shared heap sizes? And can we define this