Go Concepts - Memory Model
Jump to navigation
Jump to search
External
- The Go Memory Model https://golang.org/ref/mem
Internal
Memory Model
Memory Safety
It is almost impossible to access invalid memory. Array accesses have bounds checked.
Garbage Collection
Go is a garbage collected language, and this introduces pauses that are difficult to predict.