最后更新于
{
"_id": ObjectId("570c04a4ad233577f97dc459"),
"score": 1034,
"location": { state: "NY", city: "New York" }
}db.records.createIndex( { score: 1 } )db.records.find( { score: 2 } )
db.records.find( { score: { $gt: 10 } } ){
"_id": ObjectId("570c04a4ad233577f97dc459"),
"score": 1034,
"location": { state: "NY", city: "New York" }
}db.records.createIndex( { "location.state": 1 } )db.records.find( { "location.state": "CA" } )
db.records.find( { "location.city": "Albany", "location.state": "NY" } ){
"_id": ObjectId("570c04a4ad233577f97dc459"),
"score": 1034,
"location": { state: "NY", city: "New York" }
}db.records.createIndex( { location: 1 } )db.records.find( { location: { city: "New York", state: "NY" } } )