普通网友 2019-06-25 17:17
浏览 2131

如何使用golang和mongo-go-driver在mongodb中创建文本索引?

I'm trying to do a full text search on a collection, but in order to do that I need to create a text index. How can I create a text index on two fields?

I know that I must use a thing as this:

opts := options.CreateIndexes().SetMaxTime(10 * time.Second)

idxFiles := []mongo.IndexModel{
    {
      Keys: bsonx.Doc{{"name": "text"}},
    },
  }

db.Collection("mycollection").Indexes().CreateMany(context, idx, opts)
  • 写回答

2条回答 默认 最新

  • duanhuayong6687 2019-06-25 19:16
    关注

    To create indexes using the official mongo go driver you can use the following code:

    // create Index
    indexName, err := c.Indexes().CreateOne(
            context.Background(),
            mongo.IndexModel{
                    Keys: bson.M{
                            "time": 1,
                    },
                    Options: options.Index().SetUnique(true),
            },
    )
    if err != nil {
            log.Fatal(err)
    }
    fmt.Println(indexName)
    

    You can replace it with your desired index configuration.

    评论

报告相同问题?

悬赏问题

  • ¥15 用三极管设计—个共射极放大电路
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示