在进程内运行 erlang vm
是否可以在进程内运行 erlang VM?
我问这个问题是因为我正在尝试使用一些使用 erl_nif 的代码,女巫确实非常酷,但我必须将信息发送回可能生成虚拟机的进程。我想到的唯一方法是创建一些 IPC 通信,例如管道或从 COUT 读取,但这需要某种协议,如果我可以直接从函数响应中调用我需要的内容,那就太酷了。
It's possible to run the erlang VM inside a process?
I'm asking this because I'm trying to use some code using the erl_nif, witch is very cool indeed, but I have to send information back to the process that could possibily spawn the VM. The only approach I've thinked is to create some IPC communication, like pipes or reading from COUT, but this imposes the need of some protocol, and would be cool if I could call what I need directly from the function response.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
即使不提 Erlang VM 管理操作系统线程并具有事件循环,您希望它在不可预测的操作系统进程中运行时如何保持稳定和可预测?不,你不能在操作系统进程内运行 Erlang VM。
将 Erlang VM 视为操作系统:
Even don't mention that Erlang VM manage OS threads and has event loop, how do you want it will be stable and predictable when running inside an unpredictable OS process? No, you can't run Erlang VM inside an OS process.
Think about Erlang VM as about operating system: