Hello,
You must set the field name as multi-valued with the FacetsConfig
<http://lucene.apache.org/core/4_9_0/facet/org/apache/lucene/facet/FacetsConfig.html>
.
FacetsConfig facetsConfig = new FacetsConfig();
facetsConfig.setMultiValued("fieldName", true);
Then you can call:
facetsConfig.build(luceneDoc);
This returns a Document that you can store with your IndexWriter.



On Thu, Jun 4, 2015 at 5:27 PM, Fielder, Todd Patrick <tpfi...@sandia.gov>
wrote:

> I am trying to add a facet for which each document can have multiple
> values, but am receiving the following exception:
> dimension "Role Name" is not multiValued, but it appears more than once in
> this document
>
> How do I create a MultiValued Facet?
>
> Thanks in advance
>

Reply via email to