Created
September 6, 2020 16:43
-
-
Save ArsenyYankovsky/7ea16d9a29a0bddefd50191398424cac to your computer and use it in GitHub Desktop.
This file contains hidden or 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
export const saveBooks = async (books) => { | |
const chunks = chunk(books, 100) | |
const { results } = await PromisePool | |
.withConcurrency(10) | |
.for(chunks) | |
.process(saveBooksChunk) | |
return results | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment