Skip to content

Instantly share code, notes, and snippets.

@ArsenyYankovsky
Created September 6, 2020 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ArsenyYankovsky/c13b5468734671b1daafa17c0f9b1030 to your computer and use it in GitHub Desktop.
Save ArsenyYankovsky/c13b5468734671b1daafa17c0f9b1030 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