参与者模型库、框架或用 C 编写的语言?
Actor 模型由 Carl Hewitt 在 1973 年的一篇论文中定义,但已通过 Erlang 语言普及。我相信 Erlang 中非自托管的部分(用 Erlang 编写)是用 C 编写的; BEAM 和 HiPE 主要用 C 编写。有哪些用 C 编写的替代 Actor 模型实现(语言、框架或库)?
The Actor-model was defined in a 1973 paper by Carl Hewitt, but has been popularized by the Erlang language. I believe the parts of Erlang that aren't self-hosted (written in Erlang) are written in C; BEAM and HiPE are written mostly in C. What are some alternative Actor-model implementations (languages, frameworks, or libraries) that are written in C?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
libactor 是一个 GPLv2 库,在单个库中实现了 Actor 模型使用 pthread 的进程。
There is libactor which is a GPLv2 library implementing the actor model in a single process using pthreads.
考虑libdispatch。
Consider libdispatch.