MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Performances de MongoDB vers Array

référence http://mongodb.github.io/node-mongodb -native/2.0/tutorials/streams/ vous pouvez diffuser les résultats un par un et créer un tableau d'identifiants.

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)
    }); 
}); 

Je n'ai pas vérifié le temps, mais je suis sûr qu'il devrait être inférieur à (termsCol.find :0,162 ms +termsCol.toArray :30,910 ms)