|
|
|
|
|
by Nullabillity
1515 days ago
|
|
Erlang sidesteps the problem by avoiding mutable shared state, in this context they're threads/processes in name only. Go is just yet another implementation of green threads that is slightly less broken than prior implementations, because it had the benefit of being implemented on day 1 (so the whole ecosystem is green thread-aware). It's certainly nowhere near "best-in-class". |
|
Erlang is maximal shared mutable state!
Processes are mutable state and they’re shared between other processes.