MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

MongoDB toArray-Leistung

Referenz http://mongodb.github.io/node-mongodb -native/2.0/tutorials/streams/ Sie können die Ergebnisse einzeln streamen und ein Array von IDs erstellen.

var MongoClient = require('mongodb').MongoClient
var url = 'mongodb://localhost:27017/myproject';
// Use connect method to connect to the Server
MongoClient.connect(url, function(err, db) {
    console.log("Connected correctly to server");
 var col = db.collection('terms');
    var ids = []
    var findCursor = col.find({term_id: {'$in': flatTree}});
    findCursor.on("data", function(data) {
       ids.push(data._id)
    });
    findCursor.on("end", function(data) {
      // let's finish
      console.log(ids)
    }); 
}); 

Ich habe die Zeit nicht überprüft, aber sicher, dass sie kleiner sein sollte (termsCol.find:0,162 ms +termsCol.toArray:30,910 ms)