如何在netty中创建频道池?

时间:2015-06-10 06:12:59

标签: java netty

我正在使用此示例代码创建频道:

 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

1 个答案:

答案 0 :(得分:4)

请参阅http://netty.io/news/2015/05/07/4-0-28-Final.html

上的ChannelPool部分