Erlang:有没有办法使用 rebar 将更改的模块重新加载到已经运行的节点中?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为没有必要将钢筋带入其中。
我使用 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.