Skip to content

Instantly share code, notes, and snippets.

@shlomisas
Last active May 10, 2021 06:17
Show Gist options
  • Save shlomisas/edd57f36f780c393dd3c3542d6c01449 to your computer and use it in GitHub Desktop.
Save shlomisas/edd57f36f780c393dd3c3542d6c01449 to your computer and use it in GitHub Desktop.
js sequence vs. parallel
(async ()=> {
const TTL = 1000; // ms
const N = 4;
const foo = () => {
return new Promise((resolve, reject) => {
setTimeout(resolve, TTL);
});
}
// Sequence
let start = Date.now();
for (let i=0;i<N;i++) {
await foo();
}
console.log(`Sequence took: ${(Date.now()-start) / 1000} seconds`);
// Parallel
start = Date.now();
const promises = [];
for (let i=0;i<N;i++) {
promises.push(foo());
}
await Promise.all(promises);
console.log(`Parallel took: ${(Date.now()-start) / 1000} seconds`);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment