|
|
|
|
|
by pmarreck
333 days ago
|
|
It's in line with the erlang philosophy of letting things crash trivially and restart instantly. Due to the universal immutability, starting a new process from a given state in Erlang/Elixir is nearly instantaneous and has extremely little overhead as they are not OS threads, they are BEAM VM threads. Very opposite the Go model, btw. |
|