Scala 2.8 Actor设计文档? Akka设计文档?

发布于 2024-09-02 23:33:51 字数 250 浏览 12 评论 0原文

是否有 Scala 2.8 Actors 的设计文档,就像 2.7 的设计文档一样?

Scala Actor:统一基于线程和基于事件的编程

一个给阿卡的?

“Scala 改进文档库”没有提到 Actor。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪之魂 2024-09-09 23:33:51

2012 年 8 月更新:

Akka 文档 有了很大的改进,现在有很多关于它的设计和架构。

Actor System


原始答案(2010 年 5 月)

关于 Akka,我本身没有找到设计文档,但是最近的博客文章系列“异步思考 - 使用 Akka 事务器进行域建模" 来自 Debasish Ghosh 足够接近了。

以下是实现中的一些要点..

  1. Akka 基于让它崩溃的哲学。您可以设计负责控制参与者生命周期的主管层次结构。 [...]
  2. accounts 是保存在 Redis 中的 Map 的句柄。在这里,我们存储客户打开的所有帐户,并按帐号进行哈希处理。 [...]
  3. 使用 Akka,您还可以在存储库崩溃时提供重新启动挂钩,并由主管自动重新启动。 postRestart 是我们重新初始化 Map 结构的钩子。
  4. Akka 使用 multiverse,这是一种基于 Java 的 STM 实现来进行事务处理。在代码中使用 atomic{} 标记您的交易,底层 STM 将处理其余的事情。

Update August 2012:

The Akka documentation has vastly improved, and has now many details on its design and architecture.

Actor System


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 ..

  1. Akka is based on the let-it-crash philosophy. You can design supervisor hierarchies that will be responsible for controlling the lifecycles of your actors. [...]
  2. accounts is the handle to a Map that gets persisted in Redis. Here we store all accounts that the clients open hashed by the account number. [...]
  3. With Akka you can also provide a restart hook when you repository crashes and gets restarted automatically by the supervisor. postRestart is the hook where we re-initialize the Map structure.
  4. Akka uses multiverse, a Java based STM implementation for transaction handling. In the code mark your transactions using atomic{} and the underlying STM will take care of the rest.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文