高效的 Erlang 端口驱动程序

发布于 2024-09-19 01:31:00 字数 177 浏览 4 评论 0原文

我想生成 Erlang 进程,通过端口驱动程序与 C 程序进行通信。

由于生成许多这样的进程可能效率低下,我可以生成一个接收消息并将这些消息排队以便用 C 程序处理的 Erlang 进程吗?

当这个 C 程序开始等待传入的作业时,它会阻塞吗?

最好的策略/架构是什么?

谢谢!

I want to spawn Erlang processes that will communicate with a C program through a Port Driver.

As spawning many of these processes can be inefficient, can I spawn one Erlang process that receives messages and queue these messages for processing with the C Program?

As this C program starts to wait for incoming jobs, will it block?

What's the best strategy/architecture?

Thanks!

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

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

发布评论

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

评论(1

空城旧梦 2024-09-26 01:31:00

是的,通常您有一个进程连接到流量所经过的端口。有关端口的合理描述以及如何使用它们,请阅读 Erlang 互操作性教程用户的指南。它解释了不同类型的端口及其属性。

一般来说,http://www.erlang.org 上的文档非常好,非常值得阅读。

Yes, generally you have one process which is connected to the port which traffic goes through. For a reasonable description of ports and how to use them read the Erlang Interoperability Tutorial User's Guide. It explains the different types of ports and their properties.

Generally speaking the documentation at http://www.erlang.org is quite good and well worth reading.

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