如何将模块发送到 Erlang 节点?
我有几个节点在 erlang 集群中运行,每个节点都使用相同的 magic cookie 并且彼此信任。我想让一个主节点向其他节点发送代码和模块。我该怎么做?
I have several nodes running in an erlang cluster, each using the same magic cookie and trusted by each other. I want to have one master node send code and modules to the other nodes. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
nl(module_name).
在所有节点上加载代码。use
nl(module_name).
to load code on all the nodes.查看我的 etest 项目,了解以编程方式在所有节点上注入一组模块然后启动它的示例。
其核心几乎是以下代码:
Check out my etest project for an example of programmatically injecting a set of modules on all nodes and then starting it.
The core of this is pretty much the following code: