JMJaydip ManasuriyaFeb 24, 2016
Is Node.js truly non-blocking?
Node is using event-loop and single threaded approach in contrast to traditional threaded model used by other server side stacks. In traditional threaded model, each client request is served by a new thread or process. In node it assigns a new thread...
MSNMiguel and 2 more commented