Erlang:有没有办法使用 rebar 将更改的模块重新加载到已经运行的节点中?

发布于 2024-09-04 01:13:18 字数 56 浏览 1 评论 0原文

rebar 构建工具看起来很酷,但是有没有办法用它重新编译并将文件重新加载到当前正在运行的节点中?

The rebar build tool seems pretty cool, but is there a way to recompile AND reload files into a currently running node with it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

陌伤浅笑 2024-09-11 01:13:18

我认为没有必要将钢筋带入其中。

我使用 Mochiweb 项目中的 reloader.erl 。只需与程序的其余部分一起构建此模块,并在应用初始化序列的早期调用 reloader:start() 即可。

在该调用之后,只要程序中的模块在磁盘上发生更改,重新加载器就会自动替换正在运行的副本。

I don't see a need to bring rebar into it.

I use reloader.erl from the Mochiweb project. Just build this module along with the rest of your program and call reloader:start() early in your app's initialization sequence.

After that call, any time a module in your program changes on disk, the reloader will replace the running copy automatically.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文