Go Concepts - Memory Model: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Go Concepts")
 
No edit summary
Line 2: Line 2:


* [[Go Concepts#Subjects|Go Concepts]]
* [[Go Concepts#Subjects|Go Concepts]]
=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.

Revision as of 23:55, 21 March 2016

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.