Node.js and CPU intensive requests

前端 未结 5 2162
囚心锁ツ
囚心锁ツ 2020-12-02 03:42

I\'ve started tinkering with Node.js HTTP server and really like to write server side Javascript but something is keeping me from starting to use Node.js for my web applicat

5条回答
  •  被撕碎了的回忆
    2020-12-02 04:08

    Use child_process is one solution. But each child process spawned may consume a lot of memory compared to Go goroutines

    You can also use queue based solution such as kue

提交回复
热议问题