I implemented a gateway program,
which transfer message between clients and inner server
my question is :
between the gateway and the inner server,
Only one tcp connection is enough?
If I establish more such as 8 connections,would the transfer be more efficient,fast?
(I can maintain a map,to indicate a client which connection(0-7) should be used)
by the way,there could be more than one gateway.
I mean there are several gateways for clients,all the gateway connect to the inner server.
Thank you