Hi:
when 300 client connect to my servers at almost in same time ,but the
server only can handle 240 client ,60 client will be discarded.
my server codes like fellowing :
InetSocketAddress serverAddress1 = new InetSocketAddress(8008);
DemuxingProtocolCodecFactory dpcf = new
DemuxingProtocolCodecFactory();
dpcf.register(new CliEntCmdDeconder());
dpcf.register(new CliEntEncoder());
SocketAcceptor acceptor = new
SocketAcceptor(Runtime.getRuntime().availableProcessors() + 1,
Executors.newCachedThreadPool());
SocketAcceptorConfig cfg = new SocketAcceptorConfig();
cfg.setReuseAddress(true);
DefaultIoFilterChainBuilder chain = cfg.getFilterChain();
chain.addLast("logger", new LoggingFilter());
chain.addLast("protocol", new ProtocolCodecFilter(dpcf));
System.out.println("long on ....");
DemuxingIoHandler iohanlder=new DemuxingIoHandler();
iohanlder.addMessageHandler(clicmdbro.class, new
CliEntCmdHandler(testb));
try
{
acceptor.bind(serverAddress1,iohanlder, cfg);
} catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
how can i ressolve the problem??
Thanks in Advance
--
View this message in context:
http://www.nabble.com/How-can-i-improve-the-total-numbers-of-session-which-server-will--handle-connects-from-client-tp14429723s16868p14429723.html
Sent from the Apache MINA Support Forum mailing list archive at Nabble.com.