|
|
|
|
|
by catnaroek
4559 days ago
|
|
Although Go has channels for civilized communication between goroutines, the language does not have a native notion of what data is owned by which goroutine, which pretty much forces garbage collection to stop the whole world. This, together with pervasive mutability, means that communication using channels is merely a convention that can easily be circumvented. |
|