I want to use co-parallel in my project to limit the http request to a third-party server.
just like example,limie concurrency 2:
var res = yield parallel(reqs, 2);
Is it finished two request and then start another two request? till all request finshed?
I want to use
co-parallel
in my project to limit the http request to a third-party server. just like example,limie concurrency 2:var res = yield parallel(reqs, 2);
Is it finished two request and then start another two request? till all request finshed?