Най-лесният начин е да използвате Cursor
(справка
):
var cursor = db.collection('test').find();
// Execute the each command, triggers for each document
cursor.each(function(err, item) {
// If the item is null then the cursor is exhausted/empty and closed
if(item == null) {
db.close(); // you may not want to close the DB if you have more code....
return;
}
// otherwise, do something with the item
});
Ако има много изчисления, които трябва да направите, може да помислите дали Map-Reduce (справка ) ще отговарят на вашите нужди, тъй като кодът ще се изпълнява на DB сървъра, а не локално.