Parallelizing tasks in Node.js

后端 未结 5 1520
执念已碎
执念已碎 2020-12-13 02:48

I have some tasks I want to do in JS that are resource intensive. For this question, lets assume they are some heavy calculations, rather then system access. Now I want to r

5条回答
  •  情书的邮戳
    2020-12-13 03:16

    Just recently came across parallel.js but it seems to be actually using multi-core and also has map reduce type features. http://adambom.github.io/parallel.js/

提交回复
热议问题