Docs 菜单
Docs 主页
/ /

运行MongoDB搜索查询

在本指南中,您可以学习;了解如何使用Go驾驶员对集合运行 MongoDB搜索查询。 MongoDB Search 使您能够对MongoDB Atlas上托管的集合执行全文搜索。 MongoDB Search 索引指定搜索行为以及要索引的字段。

The example in this guide uses the movies collection in the sample_mflix database from the Atlas sample datasets. To learn how to create a free MongoDB Atlas cluster and load the sample datasets, see the MongoDB Get Started <https://www.mongodb.com/zh-cn/docs/get-started/?language=go guide.

本部分介绍如何创建聚合管道以对集合运行MongoDB搜索查询。

要运行MongoDB搜索查询,您必须在集合上创建MongoDB搜索索引。要学习;了解如何以编程方式创建MongoDB搜索索引,请参阅索引指南中的 MongoDB搜索和MongoDB Vector Search 索引部分。

创建MongoDB Search索引后,在管道阶段大量中添加 $search 阶段以指定搜索条件。然后,调用 Aggregate() 方法并将管道大量作为参数传递。

提示

要学习;了解有关聚合操作的更多信息,请参阅 聚合指南。

此示例通过执行以下操作来运行MongoDB搜索查询:

  • 创建一个 $search 阶段,指示驱动程序查询title字段包含单词 "Alabama" 的文档

  • 创建一个 $project 阶段,指示驱动程序在查询结果中包含 title 字段

  • 将管道阶段传递到 Aggregate() 方法并打印结果

// Defines the pipeline
searchStage := bson.D{{"$search", bson.D{
{"text", bson.D{
{"path", "title"},
{"query", "Alabama"},
}},
}}}
projectStage := bson.D{{"$project", bson.D{{"title", 1}}}}
// Runs the pipeline
cursor, err := collection.Aggregate(ctx, mongo.Pipeline{searchStage, projectStage})
if err != nil {
panic(err)
}
// Prints the results
var results []bson.D
if err = cursor.All(ctx, &results); err != nil {
panic(err)
}
for _, result := range results {
fmt.Println(result)
}
{
_id: new ObjectId('...'),
title: 'Alabama Moon'
}
{
_id: new ObjectId('...'),
title: 'Crazy in Alabama'
}
{
_id: new ObjectId('...'),
title: 'Sweet Home Alabama'
}

要学习;了解有关MongoDB Search 的更多信息,请参阅Atlas文档中的MongoDB Search 指南和 $ 搜索管道阶段参考。

要学习;了解有关 Aggregate() 方法的详情,请参阅API文档。

后退

时间序列

在此页面上