Scala 2.8 Actor设计文档? Akka设计文档?
Is there a design document for Scala 2.8 Actors, like it is for 2.7?
Scala Actors: Unifying Thread-based and Event-based Programming
Is there one for Akka?
The "Scala Improvement Documents Library" doesn't mention Actors.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
2012 年 8 月更新:
Akka 文档 有了很大的改进,现在有很多关于它的设计和架构。
原始答案(2010 年 5 月)
关于 Akka,我本身没有找到设计文档,但是最近的博客文章系列“异步思考 - 使用 Akka 事务器进行域建模" 来自 Debasish Ghosh 足够接近了。
以下是实现中的一些要点..
Map
的句柄。在这里,我们存储客户打开的所有帐户,并按帐号进行哈希处理。 [...]atomic{}
标记您的交易,底层STM
将处理其余的事情。Update August 2012:
The Akka documentation has vastly improved, and has now many details on its design and architecture.
Original Answer (May 2010)
Regarding Akka, I didn't find a design document per se, but the recent blog post series "Thinking Asynchronous - Domain Modeling using Akka Transactors" from Debasish Ghosh are close enough.
Here are some of the salient points in the implementation ..
Map
that gets persisted in Redis. Here we store all accounts that the clients open hashed by the account number. [...]atomic{}
and the underlyingSTM
will take care of the rest.