Re: multi valued facets

2015-06-04 Thread Matt Hallman
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:

Re: multi valued facets

2015-06-04 Thread Erik Hatcher
Set the field to multiValued=true in your schema. How'd you manage to get multiple values in there without an indexing error? An existing index built with Lucene directly? Erik On Jun 4, 2015, at 17:27, Fielder, Todd Patrick tpfi...@sandia.gov wrote: I am trying to add a facet for

Re: multi valued facets

2015-06-04 Thread Chris Hostetter
: Set the field to multiValued=true in your schema. How'd you manage to : get multiple values in there without an indexing error? An existing : index built with Lucene directly? Erik: this isn't a Solr question -- the error message mentioned comes from the lucene/facets FacetsConfig class.

multi valued facets

2015-06-04 Thread Fielder, Todd Patrick
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