Node uses a thread pool for async i/o flows, it's just this is abstracted away from you in terms of the main event loop. It's really an elegant model, and makes node a great fit for a LOT of use cases. Using the most broadly used dynamic language on the planet probably doesn't hurt as well.
Comments
Node uses a thread pool for async i/o flows, it's just this is abstracted away from you in terms of the main event loop. It's really an elegant model, and makes node a great fit for a LOT of use cases. Using the most broadly used dynamic language on the planet probably doesn't hurt as well.