Cách dễ nhất là sử dụng Cursor
( tham chiếu
):
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
});
Nếu bạn cần phải tính toán nhiều, bạn có thể cân nhắc liệu Map-Reduce ( tham khảo ) sẽ phù hợp với nhu cầu của bạn vì mã sẽ thực thi trên máy chủ DB, thay vì cục bộ.