I've got very limited knowledge about Erlang, but as far as I understand, it can spawn "processes" with a very low cost.
So I wonder, what are those "processes" behind the scenes?
Are they Fibers? Threads? Continuations?
|
I've got very limited knowledge about Erlang, but as far as I understand, it can spawn "processes" with a very low cost. So I wonder, what are those "processes" behind the scenes? Are they Fibers? Threads? Continuations?
| |||||
feedback
|
|
Also, from the Erlang doc:
Source: http://www.erlang.org/doc/reference_manual/processes.html You might also want to have a look to this: http://www.defmacro.org/ramblings/concurrency.html When talking about Erlang processes, it says:
| |||||||||
feedback
|
|
They are Lightweight Processes. Also see my question Technically why is processes in Erlang more efficient than OS threads. | |||
|
feedback
|
|
Basically they are Threads ;) One address sapce for them. | |||||||||||
feedback
|