使用golang如何创建2dsphere数据
Golang可以使用MongoDB的Go驱动程序来创建2dsphere数据。下面是一个示例// 创建一个2dsphere索引
collection := client.Database("test").Collection("locations")
index := mongo.IndexModel{
Keys: bson.D{{"geo", "2dsphere"}},
}
_, err := collection.Indexes().CreateOne(context.TODO(), index)
创作工场
免责声明:
以上内容除特别注明外均来源于网友提问,创作工场回答,未经许可,严谨转载。
点击这里>>使用🔥专业版,更聪明、更完整、更原创!