Will Appfog load balancer forward multiple outstanding requests to the same node.js instance or does it allow only one outstanding request per instance? I couldn't find information on this on Appfog website.
Since one of the advantages of node.js is that a node.js instance can concurrently process multiple requests (with I/O associated with requests being asynchronously processed), if a load balancer only allows one outstanding request per node.js instance, I believe that we are not fully utilizing the power of node.js - am I right?