- 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.
- Android Wearable Programming
- Python自然語言處理實戰:核心技術與算法
- LabVIEW2018中文版 虛擬儀器程序設計自學手冊
- LabVIEW Graphical Programming Cookbook
- Hands-On Image Processing with Python
- Visual Basic程序設計(第3版):學習指導與練習
- Production Ready OpenStack:Recipes for Successful Environments
- Django:Web Development with Python
- JavaScript前端開發與實例教程(微課視頻版)
- Learning Python Design Patterns(Second Edition)
- Python機器學習實戰
- 零基礎學Python數據分析(升級版)
- HTML5入門經典
- H5頁面設計:Mugeda版(微課版)
- C++寶典