— Js isn't used to high performance computing because it's so wasteful
— Concurrency is the basis for threads, however it is much lower level than them
— With other languages you can use all hardware
— The model of nodejs is for i/o processing
— Not for parallel computing
— Right, you have a deferred work queue which operates just like the reactor pattern, which does not run concurrently whatsoever
Message permanent page
— And when the code runs, there is no way to context switch to a different stack, the basis for concurrency in our case here
Message permanent page