在运行时从另一个 Erlang shell 访问 Mnesia 节点
从另一个 Erlang shell 访问单个正在运行的 mnesia 节点以仅查看表中的数据的最佳实践是什么?
我尝试打开两个 shell 并将它们指向相同的 mnesia 目录位置,在文档中找到这一点后,我意识到这是一个非常糟糕的主意。
-mnesia dir 目录。存储所有 Mnesia 数据的目录的名称。目录名称对于当前节点必须是唯一的。在任何情况下,两个节点都不能共享同一个 Mnesia 目录。结果是完全不可预测的。
What is the best practice to accessing a single running mnesia node from another Erlang shell to only view data in the tables?
I tried opening two shells and pointing them to the same mnesia directory location which I realized was a very bad idea after finding this in the documentation.
-mnesia dir Directory. The name of the directory where all Mnesia data is stored. The name of the directory must be unique for the current node. Two nodes may, under no circumstances, share the same Mnesia directory. The results are totally unpredictable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为最简单的方法是加入远程 shell。只需使用
-remsh Node
参数启动erl
另一个终端:
另一个选择是使用
erl
强大的作业控制功能(按^G< /code>)
请注意,如果您要切换回现有 shell,则必须按
Enter
才能显示 shell 提示符。I think that easiest way is joining to remote shell. Just start
erl
with-remsh Node
parameterAnother terminal:
Another option is use powerful job control capability of
erl
(Press^G
)Note that you have to press
Enter
to show shell prompt if you are switching back to existing one.