You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golang-nuts
Reading an article on the design of the Green Tea collector the other day got me thinking about GC design more generally. One metric that could go into a GC design besides the total heap size is the total number of pointers into the heap. Because Go uses a pointer bitmap, I think this metric should be fairly easy (in theory) to access. I'd be interested to see what the ratio between heap size and pointer count is for various programs in production.