Following an example from the mongodb manual for nodejs, I am finding all documents from a db as follows
mongo.Db.connect(mongoUri, function (err, db) {
Would limiting the query be an option? Literally with db.collection.find().limit()? The limit is parsed before sending the command to the server, so it only scans the amount of data in your limit.