Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are Erlang processes behind the scenes?

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?

like image 707
Roger Johansson Avatar asked May 07 '10 11:05

Roger Johansson


1 Answers

They are Lightweight Processes.

Also see my question Technically why is processes in Erlang more efficient than OS threads.

like image 160
Jonas Avatar answered Oct 03 '22 02:10

Jonas