Hands-On System Programming with Go
上QQ阅读APP看书,第一时间看更新

Understanding memory management

Go is garbage collected; it manages its own memory with a computational cost. Writing an efficient application requires knowledge of its memory model and internals in order to reduce the garbage collector's work and increase general performance.