- Mastering Akka
- Christian Baxter
- 282字
- 2021-07-08 11:06:05
Understanding the actor model's origin
If you had never bumped into the actor model concept before using it within Akka, it would be easy to think that the Akka team created this programming paradigm themselves, but that's not at all true. In fact, the origins of the actor model idea itself can be traced back to a 1973 publication by Carl Hewitt, Peter Bishop, and Richard Steiger titled A Universal Modular Actor Formalism for Artificial Intelligence.
After that publication, things were a bit quiet on the actor model front until Erlang came onto the scene in 1986. The Erlang language was developed by a team within Ericsson, a Swedish telecom company, as the software backbone of their telecommunication network. The language was designed to be highly scalable, with distributed programming and concurrency as the enablers of that scalability. Erlang adopted the actor model as the foundation for both concurrent programming and distributed programming (via message passing) within the language.
The team at Ericsson furthered the ideas of the actor model, adding the concept of supervision to handle failures and perform restarting of components. This provided them with the fault tolerance that they needed to run their telecommunication networks.
In 2006, an initial actor model implementation by Phillip Haller was included as part of Scala 2.1.7. Later, in 2009, Jones Bonèr created the Akka framework as an Erlang-inspired Scala implementation of the actor model. As this implementation was deemed more mature and more feature rich than the one included in the main Scala distribution, it eventually supplanted that native implementation, starting in Scala 2.10. Now, when you think of actors and Scala, Akka is the defacto framework that comes to mind.
- Learning Selenium Testing Tools with Python
- Backbone.js Blueprints
- Python貝葉斯分析(第2版)
- SSM輕量級框架應(yīng)用實戰(zhàn)
- Drupal 8 Configuration Management
- Nginx Lua開發(fā)實戰(zhàn)
- PySpark Cookbook
- 編程與類型系統(tǒng)
- Python圖形化編程(微課版)
- OpenMP核心技術(shù)指南
- HTML5+CSS3+JavaScript 從入門到項目實踐(超值版)
- Java 從入門到項目實踐(超值版)
- Unreal Engine Game Development Cookbook
- Mastering Machine Learning with scikit-learn
- Django 3 Web Development Cookbook