Erlang集群上的生成过程
如果我在 erlang 集群中的繁忙节点上生成一个新进程,而其他节点空闲,该进程是否会自动在其中一个空闲节点上生成?
更新:我也发现了另一个与此类似的问题:
If I spawn a new process on a busy node in an erlang cluster and other nodes are idle will the process automatically be spawned on one of the free nodes?
Update: I found another question similar to this one too:
Using Erlang, how should I distribute load amongst a cluster?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,不会的。生成是“非声明性的”。
No, it will not. Spawning is "not declarative".