I think if you have setTimeout=1
then the node server will be unavailable for all requests in 1 second since it's event-based, non-threaded web server (correct me if I'm wrong).
I've heard that Nginx is also an event-based web server. Doesn't that mean that if I have sleep 1
then it would be halted for all requests in 1 second?