sql >> Databasteknik >  >> NoSQL >> MongoDB

Node.js + MongoDB :MongoError:markören dödades eller tog timeout

Enligt Mongodbs officiella dokument , den valfria parametern timeout kan ställas in till false .

db.collection('mycollection').find({}, {timeout:false}, function(err, cursor) {
    if (!err) {
         // Iterate safely on your cursor here
    } else {
        console.log(err);
    }
});



  1. Mongodb hitta inuti sub array

  2. Använder MongoDB:s Geospacial index med 3d-data

  3. Ring MongoDB lagrad Javascript-funktion i C# .Net

  4. PowerShell inte kompatibel med MongoDB C#-drivrutinsmetoder?