Hello, 

 I am wondering why solr is returning a manufacturer name field ( Dell, Inc) as 
Dell one result and Inc another result. Is there a way to facet a field which 
have space or delimitation on them?

query.addFacetField("manu");  
query.setFacetMinCount(1);
        query.setIncludeScore(true);
 List<FacetField> facetFieldList=qr.getFacetFields();
            for(FacetField facetField: facetFieldList){                
                System.out.println(facetField.toString() +"Manufactures");
                }
And it returns 
-----------------
[manu:[dell (5), inc (5), corp (1), sharp (1), sonic (1), view (1), viewson 
(1), vizo (1)]]



      

Reply via email to