how to retain one million of simultanous TCP connections?
Posted
by cow
on Stack Overflow
See other posts from Stack Overflow
or by cow
Published on 2010-05-14T02:06:31Z
Indexed on
2010/05/14
2:14 UTC
Read the original article
Hit count: 271
i am to design a server that needs to serve millions of clients that are simultaneously connected with the server via TCP.
the data traffic between the server and the clients may be sparse. so bandwidth issue can be ignored.
one important requirement is that whenever the server needs to send data to any client it can use the existing TCP connection instead of opening a new connection toward the client (because client can be behind a firewall).
does anybody know how to do it and what hardware/software is needed (at the least cost)?
thanks in advance for any suggestion.
© Stack Overflow or respective owner