What is Erlang's concurrency model actually ?

Posted by arun_suresh on Stack Overflow See other posts from Stack Overflow or by arun_suresh
Published on 2010-04-25T09:47:33Z Indexed on 2010/04/25 9:53 UTC
Read the original article Hit count: 246

Filed under:
|
|

I was reading a paper recently Why Events are Bad. The paper is a comparative study of Event based and thread based highly concurrent servers and finally concludes stating that Threads are better than events in that scenario.

I find that I am not able to classify what sort of concurrency model erlang exposes. Erlang provides Light Weight Processes, but those processes are suspended most of the time until it has received some event/message of some sort.

/Arun

© Stack Overflow or respective owner

Related posts about erlang

Related posts about multithreading