Question - async.series / async.parallel - but no data accumulation
See original GitHub issueAre there equivalents to async.series / async.parallel, but which do not accumulate data
e.g., we have
async.series([] | {}, function(err, results){});
I am looking for
async.seriesX([] | {}, function(err){});
I assume this might save a small amount of memory, by avoiding creating an object in the async library behind the scenes.
Issue Analytics
- State:
- Created 6 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
How do I return the accumulated results of multiple (parallel ...
It takes an array (or iterable) of promises, and returns a new promise which is resolved when all the promises of the array...
Read more >async - Documentation - GitHub Pages
Returns a new array of all the values in coll which pass an async truth test. This operation is performed in parallel, but...
Read more >Understanding Node.js Async Flows: Parallel, Serial, Waterfall ...
In case an error is passed to a function's callback, the main callback is immediately called with the error.
Read more >Understanding Node.js Async Flows: Parallel, Serial ... - Velotio
It can be an array, an object or any iterable. Callback: This is the callback where all the task results are passed and...
Read more >async function - JavaScript - MDN Web Docs - Mozilla
The async function declaration declares an async function where the await keyword is permitted within the function body. The async and await ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Ok let me give it a shot, thanks