- Hands-On System Programming with Go
- Alex Guerrieri
- 40字
- 2021-06-24 13:42:23
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.