Go Concepts - Memory Model: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 1: Line 1:
=External=
* The Go Memory Model https://golang.org/ref/mem
=Internal=
=Internal=


* [[Go Concepts#Subjects|Go Concepts]]
* [[Go Concepts#Subjects|Go Concepts]]


=Memory Model=
=Memory Model=

Latest revision as of 04:55, 22 March 2016

External

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.