Skip to content

Instantly share code, notes, and snippets.

@ArsenyYankovsky
Created September 6, 2020 16:43
Show Gist options
  • Save ArsenyYankovsky/7ea16d9a29a0bddefd50191398424cac to your computer and use it in GitHub Desktop.
Save ArsenyYankovsky/7ea16d9a29a0bddefd50191398424cac to your computer and use it in GitHub Desktop.
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