4

複数の値を持つ、保存され、索引付けされた name のフィールドを想定していますcommentcomment検索を実行するとき、一致を含む値のみを返したいと思います 。例えば:

この結果を取得する代わりに「金」を検索すると:

<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、正確ではないかもしれませんが、要点を示しています)

ありがとう。

4

1 に答える 1

5

他のSolrユーザーとの会話を考えると、これは便利な機能であると私は信じています。私は機能リクエストを提出しました。

Solr:一致したmultiValuedフィールドのみを返します

于 2012-10-16T19:05:40.243 に答える