我有一个快递应用程序。我想为要运行的一组函数提供并行流程。我正在考虑使用异步模块来这样做。
我想知道是否有任何其他模块会比这更好?
其次我想知道这些功能是否必须是异步的?可以说我有这样的代码
var sum = function(x, y){
return (x + y)
}
async.parallel([
function(callback){
setTimeout(function(){
result = sum (x, y); //just an example for a synchronous function
callback(null, result);
}, 100);
},
function(callback){
result = sum (x, y); //just an example for a synchronous function
callback(null, result);
}
],
// optional callback
function(err, results){
console.log(result);
// the results array will equal ['one','two'] even though
// the second function had a shorter timeout.
});
所以你可以在里面有一些同步的功能。那么这两个仍然会并行运行吗?
我还听说在 node.js 中只有 I/O 任务可以并行运行,因为 node.js 是单线程的。这是真的吗?因此,如果我没有异步模块中的 I/O 任务,它们也不会并行运行,而只是出现?
请帮忙。