(10/11/16 6:43), Dennis Gearon wrote:
fc='field collapsing'?

fc of facet.method=fc stands for Lucene's FieldCache.
enum of facet.method=enum stands for Lucene's TermEnum.

Usually, you do not need to set facet.method because Solr
automatically uses most appropriate facet method for
each field type:

boolean: TermEnum
multiValued/tokenized: UnInvertedField
other than those above: FieldCache

If you prefer Solr to use TermEnum, you can set facet.method=enum.
If you prefer Solr to use FieldCache, you can set facet.method=fc
(but Solr uses UnInvertedField for multiValued/tokenized fields).

Koji
--
http://www.rondhuit.com/en/

Reply via email to