Hacker News new | ask | show | jobs
by MetaCosm 4571 days ago
If you look at the Go standard library, it doesn't generate too much garbage. It is avoidable often, don't use .String, use .WriteTo -- the GC cost is not across all used memory, just memory with live pointers.