What are the recommended resources for learning about the Actor model of concurrent systems?

Posted by Larry OBrien on Programmers See other posts from Programmers or by Larry OBrien
Published on 2011-11-03T20:11:40Z Indexed on 2012/04/01 17:41 UTC
Read the original article Hit count: 253

Filed under:

The Actor concurrency model is clearly gaining favor. Is there a good book that presents the patterns and pitfalls of the model? I am thinking about something that would discuss, for instance, the problems of consistency and correctness in the context of hundreds or thousands of independent Actors.

It would be okay if it were associated with a specific language (Erlang, I would imagine, since that seems universally regarded as the proven implementation of Actors), but I am hoping for something more than an introductory chapter or two. I'm actually most interested in Actors as they are implemented in Scala, if there are any such resources available.

© Programmers or respective owner

Related posts about actor-model