本文介绍了如何在netty中创建频道池?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

I am creating channel using this sample code:

 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();

所以这里我得到一个频道(频道未来),但我的应用程序吞吐量将非常高,所以我认为一个频道是不够的,所以请告诉我如何创建频道池。

So here my getting a channel(channel future) but my application throughput will be very high so i think that one channel will not be sufficient, so please let me know that how do i create channel pool.

我使用的是netty 4.0

I am using netty 4.0

推荐答案

请参阅

Please refer ChannelPool section at http://netty.io/news/2015/05/07/4-0-28-Final.html

这篇关于如何在netty中创建频道池?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 18:38