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?