Why Do Scala Developers Mix the Actor Model with other Concurrency Models?

  • Samira Tasharofi ,
  • Peter Dinges ,
  • Ralph E. Johnson

in ECOOP 2013 - Object-Oriented Programming

Published by Springer Berlin Heidelberg | 2016, Vol 7920 | ECOOP 2013 - Object-Oriented Programming edition

ISBN: 978-3-642-39037-1

Mixing the actor model with other concurrency models in a single program can break the actor abstraction. This increases the chance of creating deadlocks and data races—two mistakes that are hard to make with actors. Furthermore, it prevents the use of many advanced testing, modeling, and verification tools for actors, as these require pure actor programs. This study is the first to point out the phenomenon of mixing concurrency models by Scala developers and to systematically identify the factors leading to it. We studied 15 large, mature, and actively maintained actor programs written in Scala and found that 80% of them mix the actor model with another concurrency model. Consequently, a large part of real-world actor programs does not use actors to their fullest advantage. Inspection of the programs and discussion with the developers reveal two reasons for mixing that can be influenced by researchers and library-builders: weaknesses in the actor library implementations, and shortcomings of the actor model itself.