Amit,
Each request is still coming on a different TCP socket, for all
purposes two different channels.
Each of these sockets has it's own object in the JS environment as
well (the argument to the tcp/http
server callback). read() is done on a socket, so the two requests data
will not overlap.
Nikhil
Hi Nikhil,Thanks for the knowledge sharing...As you are saying that each request is coming on different TCP socket, then again number of socket is limited (2^16=65536 - 1024 some reserved sockets) so as per theory it can handle at max 64k concurrent request? is it like that?
Thanks in advance.