7

solr には animal と呼ばれる multiValued フィールドがあり、その値は {cat,dog} です。solr の multiValued フィールド内の値の数を取得することは可能ですか (私の例 2)?

4

2 に答える 2

4

複数値を持つフィールドのアイテムをカウントする場合は、CountFieldValuesUpdateProcessorFactoryを使用します。

于 2012-12-12T12:15:43.213 に答える
1

There is no direct way to get the count of items in a multivalued field.
You can always maintain the field count during indexing and use it.

If not using during query time, you can always count the list size.

于 2012-12-12T11:18:08.317 に答える