Une collection organisée de snippets de code pour accélérer votre développement. Parcourez, recherchez et copiez en un clic.
db.collection('utilisateurs').find({ age: { $gt: 25 } }).explain('executionStats')
db.collection('utilisateurs').createIndex({ statut: 1, age: -1 })
db.collection('articles').createIndex({ contenu: 'text' })
db.collection('utilisateurs').createIndex({ age: -1 })
db.collection('restaurants').createIndex(
{ cuisine: 1, nom: 1 },
{ partialFilterExpression: { etoiles: { $gte: 5 } } }
)
db.collection('utilisateurs').createIndex({ nom: 1 })
db.collection('sessions').createIndex({ 'derniereModification': 1 }, { expireAfterSeconds: 3600 })
db.collection('utilisateurs').createIndex({ email: 1 }, { unique: true })
db.collection('utilisateurs').getIndexes()
db.collection('utilisateurs').dropIndex('nom_1')
db.collection('articles').find({ $text: { $search: 'mongodb' } })