Re: How to design:Use One TCPIP Client connection to Server and work concurrently

2013-10-25 Thread ray
In some enviroment,Client connect with Server(Always connect). It is a little like pipe.Many requester use the pipe send request and receive reponse.In client side,it dispatch requests and handle/match response. -- https://mail.python.org/mailman/listinfo/python-list

Re: How to design:Use One TCPIP Client connection to Server and work concurrently

2013-10-25 Thread Chris Angelico
On Sat, Oct 26, 2013 at 11:48 AM, ray wrote: > Hi all, > Because the server only can accept ONE connect from client. > If the client establish connection with the server,the server can not accept > other client. Are you sure? If that's the case, you're stuck - you can't parallelize at all. >

Re: How to design:Use One TCPIP Client connection to Server and work concurrently

2013-10-25 Thread ray
Hi all, Because the server only can accept ONE connect from client. If the client establish connection with the server,the server can not accept other client. One large batch transaction file come from user. client divide the large file to several smaller files. In my thinking: client have many

Re: How to design:Use One TCPIP Client connection to Server and work concurrently

2013-10-25 Thread Chris Angelico
On Fri, Oct 25, 2013 at 9:06 PM, ray wrote: > Hi all, > The system use ONE tcpip client and connection to server. > A large batch transactions send to server.I want to send to server > concurrently. > any idea ? > In my thinking, > A.Devide large batch transactions to small batch transactions.