How to have heavy processing operations done in node.js

后端 未结 3 516
轮回少年
轮回少年 2021-02-04 17:50

I have a heavy data processing operation that I need to get done per 10-12 simulatenous request. I have read that for higher level of concurrency Node.js is a good platform and

3条回答
  •  一生所求
    2021-02-04 18:32

    Unfortunately, I don't yet have enough reputation points to comment on Nick's answer, but have you looked into Node's cluster API? It's currently still experimental, but it would allow you to spawn multiple threads.

提交回复
热议问题