Is Node.js on multi-core machines?

Submitted by: Administrator
Yes, Node.js is one-thread-per-process. This is a very deliberate design decision and eliminates the need to deal with locking semantics. If you don't agree with this, you probably don't yet realize just how insanely hard it is to debug multi-threaded code. For a deeper explanation of the Node.js process model and why it works this way (and why it will NEVER support multiple threads), read my other post.
Submitted by: Administrator

Read Online Node.js Job Interview Questions And Answers