编程语言
首页 > 编程语言> > OIO在java中意味着什么?

OIO在java中意味着什么?

作者:互联网

请原谅我刚开始学习Java网络编程.我刚看了Netty in Action,提到了一个OIO.

NIO is used in this example because it’s currently the most widely used transport, thanks to its scalability and thoroughgoing asynchrony. But a different transport implementation could be used as well. If you wished to use the OIO transport in your server, you’d specify OioServerSocketChannel and OioEventLoopGroup.

我之前已经了解了Java IO和NIO.但OIO是什么?

我试图在谷歌搜索但没有得到任何东西.有人可以帮忙解释一下它是什么吗?

解决方法:

OIO代表Old IO或Blocking IO.在此模型中,每个套接字或客户端连接都会导致生成一个新的专用线程来处理请求.所以,Number或threads ==活动的客户端/套接字的数量.

使用NIO或New IO,可以减少线程数量,从而为更多客户端提供服务.这里,数字或线程<活动的客户端/套接字数.

标签:java,io,nio,terminology,netty
来源: https://codeday.me/bug/20190727/1556109.html