Hi, I have converted one of my fields from StrField to TextField and am not getting back any facets for that field. Here's the exact configuration of the TextField. I have tested it with 6.2.0 on a fresh instance and it repros consistently. From reading through past archives and documentation, it feels like this should just work. I would appreciate any input.
<fieldType name="lowercase" class="solr.TextField" omitNorms="true" omitTermFreqAndPositions="true" indexed="true" stored="true" positionIncrementGap="100" sortMissingLast="true" multiValued="true"> <analyzer> <tokenizer class="solr.KeywordTokenizerFactory"/> <filter class="solr.LowerCaseFilterFactory"/> </analyzer> </fieldType> Search query: /select/?facet.field=FACET_FIELD_NAME&facet=on&indent=on&q=QUERY_STRING&wt=json Interestingly facets are returned if I change facet.method to enum instead of default fc. John