Secondo Documento ufficiale di Mongodb
, il parametro facoltativo timeout
può essere impostato su false
.
db.collection('mycollection').find({}, {timeout:false}, function(err, cursor) {
if (!err) {
// Iterate safely on your cursor here
} else {
console.log(err);
}
});