Reputation: 6040
i'm still relatively new to NodeJS, but I'm interesting in making > 100k simultaneous connections to the API of several stock exchanges.
In the node docs it mentions that the number of simultaneous outgoing calls/connections is infinity - is that accurate?
Upvotes: 2
Views: 2970
Reputation: 4029
This info on the changelog is more related to the fact that before the maximum number of concurrent sockets node could handle was set to 5
(it was changeable of course) but now it is set to Infinity
by default.
This has nothing to do with the capacity of connexions an application can handle, that will be limited by the network's characteristics, the OS specifications, the available resources on the server, etc.
In short, you are looking at something (the blog post) that has nothing to do with your question.
Upvotes: 2