如何使用golang bleve搜索结果?

时间:2018-05-28 20:19:16

标签: go full-text-search bleve

我是Go和Bleve的新手(对不起,如果我要问琐碎的事情......)。这个搜索引擎似乎非常好,但在处理我的搜索结果时我遇到了困难。

我们说我们有一个结构:

type Person struct {
    Name string `json:"name"`
    Bio  string `json:"bio"`
}

现在,我们从数据库中提取数据(使用sqlx lib):

rows := []Person{}
db.Select(&rows, "SELECT * FROM person")

...并将其编入索引:

index.Index, err = bleve.Open("index.bleve")

batch := index.Index.NewBatch()

i := 0
for _, row := range rows {
    rowId := fmt.Sprintf("%T_%d", row, row.ID)
    batch.Index(rowId, row)

    i++
    if i > 100 {
        index.Index.Batch(batch)
        i = 0
    }
}

现在我们已经创建了索引。它很棒。

使用bleve command line utility,它可以正确返回数据:

bleve query index.bleve doe

3 matches, showing 1 through 3, took 27.767838ms
    1. Person_68402 (0.252219)
    Name
        Doe
    Bio
        My name is John Doe!

    2. ...

我们在此处看到,bleve已存储NameBio个字段。

现在我想通过我的代码访问它!

query := bleve.NewMatchAllQuery()
searchRequest := bleve.NewSearchRequest(query)
searchResults, _ := index.Index.Search(searchRequest)

fmt.Println(searchResults[0].ID) // <- This works

但我不是只想要ID,然后查询数据库以获取剩余的日期。致avoid hitting database,我希望能够做到这样的事情:

fmt.Println(searchResults[0].Bio) // <- This doesn't work :(

你能帮忙吗?

1 个答案:

答案 0 :(得分:3)

搜索结果中的每次点击都是DocumentMatch。您可以在文档中看到DocumentMatch Fields map[string]interface{} searchResults.Hits[0].Fields["Bio"].(string) ,可以按如下方式访问:

SearchRequest.Fields

IIRC,默认情况下,bleve不会在结果中包含文档的字段。您必须提供您希望返回[]string{"*"}的字段列表。或者,您可以传递vendor/以返回所有字段。