如何使用 bleve 文本索引库https://github.com/blevesearch/bleve来索引 XML 内容?
我想过在 Go 中使用像这个 XML 解析器这样的代码:https : //github.com/dps/go-xml-parse,但是我如何将解析的内容传递给 Bleve 进行索引?
更新:我的 XML:
我的 XML 如下所示:
<page>
<title>Title here</title>
<image>image url here</title>
<text>A sentence of two about the topic</title>
<facts>
<fact>Fact 1</fact>
<fact>Fact 2</fact>
<fact>Fact 3</fact>
</facts>
</page>
相关分类