Erlang 中的 Java SocketChannel 等效项

发布于 2024-10-03 07:19:36 字数 88 浏览 1 评论 0原文

是否有与 Java SocketChannel 类等效的 Erlang 类?需要能够使用一个 Erlang 进程处理多个客户端套接字连接。

谢谢!

Is there an Erlang equivalent of the Java SocketChannel class? Need to be able to handle multiple client socket connections using one Erlang process.

Thanks!

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

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

发布评论

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

评论(1

拒绝两难 2024-10-10 07:19:36

gen_tcp 接口允许您通过单个 Erlang 进程轻松地与多个套接字进行交互。使用 {active, Once} 套接字选项,或者,如果您幸运的话,使用 {active, true} 套接字选项。对于一个/多个非常繁忙的套接字,后者可能会冒着向 Erlang 进程的邮箱创建超出其处理能力的消息的风险,因此 {active, Once} 是首选选项。

看:
http://www.erlang.org/doc/man/inet.html

http://www.erlang.org/doc/man/gen_tcp.html

该选项通常在 gen_tcp:listen() 或 gen_tcp:connect() 调用中指定,尽管您也可以使用 inet:setopts() 更改套接字上的“活动”模式设置。

The gen_tcp interface allows you to interact quite easily with multiple sockets by a single Erlang process. Use the {active, once} socket option or, if you're feeling lucky, {active, true} socket option. For one/lots of very busy sockets, the latter can risk creating more messages to your Erlang process's mailbox than it can handle, hence {active, once} being the preferred option.

See:
http://www.erlang.org/doc/man/inet.html
and
http://www.erlang.org/doc/man/gen_tcp.html

The option is usually specified in the gen_tcp:listen() or gen_tcp:connect() calls, though you can also change the 'active' mode setting on a socket using inet:setopts().

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