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

Wie indiziert MongoDB Arrays?

Wenn es um die Indizierung von Arrays geht, indiziert MongoDB jeden Wert des Arrays, sodass Sie einzelne Elemente wie „rot“ abfragen können. Zum Beispiel:

> db.col1.save({'colors': ['red','blue']})
> db.col1.ensureIndex({'colors':1})

> db.col1.find({'colors': 'red'})
{ "_id" : ObjectId("4ccc78f97cf9bdc2a2e54ee9"), "colors" : [ "red", "blue" ] }
> db.col1.find({'colors': 'blue'})
{ "_id" : ObjectId("4ccc78f97cf9bdc2a2e54ee9"), "colors" : [ "red", "blue" ] }

Weitere Informationen finden Sie in der MongoDB-Dokumentation zu Multikeys:http://www.mongodb.org/ Anzeige/DOCS/Multikeys