Node.js - Async.js: how does parallel execution work? Node.js - Async.js: how does parallel execution work? node.js node.js

Node.js - Async.js: how does parallel execution work?


You get the answer you don't expect because async launches function: 1 first and it doesn't release control back to the event loop. You have no async functions in function: 1.

Node.js is a single-threaded asynchronous server. If you block the event loop with a long running CPU task then no other functions can be called until your long running CPU task finishes.

Instead for a big for loop, try making http requests. For example...

async = require('async')request = require('request')async.parallel([    function(callback){      request("http://google.jp", function(err, response, body) {        if(err) { console.log(err); callback(true); return; }        console.log("function: 1")        callback(false);      });    },    function(callback){      request("http://google.com", function(err, response, body) {        if(err) { console.log(err); callback(true); return; }        console.log("function: 2")        callback(false);      });    }]);


Javascrit is single-threaded unless you use special libraries/modules. So when you are executing this code it will execute the first function and then the second one.

The only thing that async.parallel does is execute all the functions and wait for all the responses, and then execute the code in the callback.

Because all the code you used is synchronous the result will be a synchronous.