How to design a client server architect
Posted
by
Saurabh01
on Stack Overflow
See other posts from Stack Overflow
or by Saurabh01
Published on 2010-12-28T07:38:44Z
Indexed on
2010/12/28
9:54 UTC
Read the original article
Hit count: 206
I like to know the server (TCP based) architecture to support large scale of clients(at least10K) to implement Fix server. My points are How we design it. How to listen on the open port? Use select or poll or any other function. How to process the response of the client? On large scale we cannot create the one thread for each client. Should the processing of response is in the different executable and share the request and response to the server executable through IPC. There is much more on it. I would appreciate if anyone explains it or provide any link. Thanks
© Stack Overflow or respective owner