使用 Go bleve 文本索引库索引 XML

如何使用 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>


POPMUISE
浏览 233回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go