Node.js
有一个像async modules这样的东西。
有谁知道 - 如何组织这样的事情:
async.map(['file1','file2','file3'], fs.stat, function(err, results){
// results is now an array of stats for each file
});
目前我正在使用Play Framework / Scala
答案 0 :(得分:0)
如果您发现等效于fs.stat
(我认为这不是您问题的目的),您可以使用Parallel Collections。你会得到这样的东西:
Vector("file1","file2","file3").par.map(f => function(fs.stat(f)))