Skip to content

Instantly share code, notes, and snippets.

View hellish's full-sized avatar
💭
I may be slow to respond.

hellish

💭
I may be slow to respond.
View GitHub Profile
@hellish
hellish / mongodb-mgo-indexes.go
Last active November 5, 2018 11:33
Create 2dsphere index
// create a 2dsphere index for a field called Location
index := mgo.Index{
Key: []string{"$2dsphere:Location"},
}
err := c.EnsureIndex(index)
if err != nil {
panic()
}