- 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.
- 黑客攻防從入門到精通(實戰秘笈版)
- C語言程序設計案例教程
- RTC程序設計:實時音視頻權威指南
- Animate CC二維動畫設計與制作(微課版)
- Python進階編程:編寫更高效、優雅的Python代碼
- Windows Presentation Foundation Development Cookbook
- 零基礎入門學習Python
- Java EE 8 Application Development
- C語言程序設計
- OpenStack Networking Essentials
- Web App Testing Using Knockout.JS
- PHP動態網站開發實踐教程
- JavaScript語法簡明手冊
- 大話程序員:從入門到優秀全攻略
- 現代JavaScript編程:經典范例與實踐技巧