I am using node v0.10.12 . I am testing the server performance with the software Jmeter, which simulates that many users access the server. The problem is that when I simulate more the 10 users, the node.js pools my requests, because they are coming from the some host.
On the web is suggested to set:
http.globalAgent.maxSockets = 99;
But it doesn't work, because the agent continues to pool the requests if they are more then 10.
Any suggestion?