Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

node如何处理同时发起上百个请求?

$
0
0

node是单线程非阻塞,多数问题都会交给异步来处理,但是如果

for (var i = 0; i < 1000; i++) {
  //http 请求
}

同时发起1000个异步请求,如何使用线程池来很好的控制,而不至于崩掉?


Viewing all articles
Browse latest Browse all 14821

Trending Articles