使用golang的mongo-driver库创建索引,根据所有索引类型,分别生成示例
代码
1.单键索引// 创建一个单键索引 collection := client.Database("mydb").Collection("mycollection") index := mongo.IndexModel{ Keys: bsonx.Doc{{"name", bsonx.Int32(1)}}, Options: options.Index().SetUnique(true), } _, err = collection.Indexes().CreateOne(context.TODO(), index)
2.多键索引:
// 创建一个多键索引 collection := client.Database("mydb").Collection("mycollection") index := mongo.IndexModel{ Keys: bsonx.Doc{{"name", bsonx.Int32(1)}, {"age", bsonx Int32(-1)}}, Options: options.Index().SetUnique(true), } _, err = collection
创作工场
免责声明:
以上内容除特别注明外均来源于网友提问,创作工场回答,未经许可,严谨转载。
点击这里>>使用🔥专业版,更聪明、更完整、更原创!