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?

link|improve this question

72% accept rate
related: stackoverflow.com/questions/1934707/… – jldupont May 7 '10 at 12:46
related: stackoverflow.com/questions/1947180/… – jldupont May 7 '10 at 12:46
feedback

3 Answers

up vote 2 down vote accepted

Also, from the Erlang doc:

Erlang processes are light-weight (grow and shrink dynamically) with small memory footprint, fast to create and terminate and the scheduling overhead is low.

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:

Erlang processes are lightweight threads. They're very cheap to start up and destroy and are very fast to switch between because under the hood they're simply functions. A typical Erlang system running on a modern desktop computer can switch between many tens of thousands such processes. Processes are switched every couple of dozen function calls which makes switches less granular but saves a tremendous amount of time normally wasted on context switching.

link|improve this answer
So how does this differ from fibers? – Roger Alsing May 7 '10 at 16:31
For example, Ruby Fibers can't run simultaneously on different cores/CPUs (as far as I know, correct me if I'm wrong), while Erlang is very good at that. – Roberto Aloi May 7 '10 at 17:46
Isn't that more of a Ruby limitation? You can create fibers from/in threads in win32. and thus it shouldn't be any problem to make them run on multiple cores? – Roger Alsing May 8 '10 at 5:27
I guess you can run fibers on multiple cores, if the threads are preemptive. I was also reading the follwing (ulf.wiger.net/weblog/2008/02/06/…). Looks interesting. – Roberto Aloi May 8 '10 at 11:33
feedback

Basically they are Threads ;) One address sapce for them.

link|improve this answer
No they aren't. Threads are much too heavyweight to implement Erlang processes. (I didn't downvote, btw.) – Marcelo Cantos May 7 '10 at 11:23
So they are totally emulated by timesharing one thread? Sorry, that sounds ridiculo9us inefficient in times where computers have more than one core ;) – TomTom May 7 '10 at 11:50
Erlang SMP is one thread per CPU core. The Erlang VM provides each process with an isolated address space, ipc and timesharing. – cthulahoops May 7 '10 at 12:25
SO basically fibers ;) – TomTom May 7 '10 at 12:41
No. Fibers use cooperative multitasking: when one fiber reaches a good stopping point, it explicitly yields control, allowing another fiber to run on the same core. Erlang processes are more like green threads: en.wikipedia.org/wiki/Green_threads – Warren Young May 7 '10 at 15:15
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.