Last active
May 10, 2021 06:17
-
-
Save shlomisas/edd57f36f780c393dd3c3542d6c01449 to your computer and use it in GitHub Desktop.
js sequence vs. parallel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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