Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an object results that's very large (maybe over 1,000 items). I'm iterating over it to save to the DB but this seems very inefficient:

        for result in results
          item = new Item result
          item.save()

Is there a more optimal way to do this and THEN get a callback as opposed to a callback for EVERY save?

share|improve this question

1 Answer

up vote 2 down vote accepted

The async module will help a lot with this. You're probably looking for a queue.

https://github.com/caolan/async#queue

You may be getting near the edge of a the normal Node.js use case.

share|improve this answer
You might also look at the 'Step' and 'after' modules. There are a bunch of control flow solutions listed on the Node modules page. – broofa Sep 17 '11 at 13:37
1  
FWIW, 1,000 items won't be an issue for async, Step, or after to deal with. No worries. – broofa Sep 17 '11 at 13:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.