用golang mongo 创建一个2d索引
//下面是使用mgo库创建2d索引的示例代码//连接数据库
session, err := mgo.Dial("localhost")
if err != nil {
panic(err)
}
defer session.Close()
// 选择数据库和集合
c := session.DB("test").C("locations")
// 创建2d索引
index := mgo.Index{
Key: []string{"$2d:loc"}, // 指定字段名及其对应的类型 Key: []string{"loc","$2d"}, // 指定字段名及其对应的类型
Unique: true, // 唯一性,不允许重复
Background: true, // 背景创建,不影响请求性能
Sparse: true, // 稀疏性,不要被文件中未出现的字段所干扰 }
err = c.EnsureIndex(index) if err != nil { panic(err) }
创作工场
免责声明:
以上内容除特别注明外均来源于网友提问,创作工场回答,未经许可,严谨转载。
点击这里>>使用🔥专业版,更聪明、更完整、更原创!