我正在使用此示例代码创建频道:
EventLoopGroup group = new NioEventLoopGroup();
try {
Bootstrap b = new Bootstrap();
b.group(group)
.channel(NioSocketChannel.class)
.option(ChannelOption.SO_KEEPALIVE, true)
.handler(new ClientInitializer());
// Start the connection attempt.
Channel ch = b.connect(host, port).sync().channel();
所以这里我得到一个频道(频道未来),但我的应用程序吞吐量会非常高,所以我认为一个频道是不够的,所以请告诉我如何创建频道池。
我使用的是netty 4.0