MongoDB
2dsphere Index
Sök…
Skapa ett 2dsphere-index
db.collection.createIndex()
används för att skapa ett 2dsphere
index. Blåtrycket av ett 2dsphere
index:
db.collection.createIndex( { <location field> : "2dsphere" } )
Här location field
är nyckeln och 2dsphere
är den typ av indexet. I exemplet nedan kommer vi att skapa en 2dsphre
index i places
samling.
db.places.insert(
{
loc : { type: "Point", coordinates: [ -73.97, 40.77 ] },
name: "Central Park",
category : "Parks"
})
Följande operation kommer att skapa 2dsphere
index på loc
fält places
samling.
db.places.createIndex( { loc : "2dsphere" } )
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow