仅返回匹配的多值字段(Return only matched multiValued field)

2019-06-28 05:50发布

假设名称为多值,储存和索引字段comment 。 执行搜索时,我想只返回的值comment包含了比赛。 例如:

当搜索“金”得到这样的结果,而不是:

<doc>
    <arr name="comment">
        <str>Theres a lady whos sure</str>
        <str>all that glitters is gold</str>
        <str>and shes buying a stairway to heaven</str>
    </arr>
</doc>

我宁愿得到这样的结果:

<doc>
    <arr name="comment">
        <str>all that glitters is gold</str>
    </arr>
</doc>

(伪XML从存储器,可能不准确,但示出的点)

谢谢。

Answer 1:

考虑到与其他用户的Solr使我相信,这是一个很有用的功能的谈话,我已经提出了功能要求:

Solr的:只返回匹配的多值字段



文章来源: Return only matched multiValued field
标签: solr