Hi,
I gona write a web server application that handle large number of requests to 2 NodeEndpoints ( Eg.
http://NODE1:7895 and http://NODE2:7895 ) . I found that there is only one option for node endpoint in Global variable which can not be applied in multiple-thread environment.
Globals.setNodeEndpoint(new NodeEndpoint("http","NODE1",7895));
What's should I do?
Thanks