Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

203
Views
moving save() outside of the loop to make it faster

I want to add documents to the collection using mongoose like this:

for(let c = 0; c < motherCards.length; c++) {
           
         ...

         const userCardModel = new db.UserCard(cloned);
         userCardModel.relatedModel = account;
         await userCardModel.save(); // for each iteration of the loop this saves the new document

}

As you see the await userCardModel.save(); is inside the loop and it causes very long time to save the all the documents

I wonder is there any working solution to make this faster?

For instance can we fill userCardModel somehow and move the await userCardModel.save(); outside of the loop?!

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!