For most of the filter factory javadoc you need to click on the underlying filter to see the detail doc for the filter. So, see: http://lucene.apache.org/core/4_3_0/analyzers-common/org/apache/lucene/analysis/miscellaneous/LimitTokenCountFilter.html
If this filter is not used, there is no limit other than the Lucene limit of unique terms per segment, which is in the billions. Yeah, that should be more clearly documented. -- Jack Krupansky On Tue, Jun 2, 2015 at 10:29 AM, Steven White <swhite4...@gmail.com> wrote: > Hi everyone > > I cannot find much useful info on LimitTokenCountFilterFactory other than > the format and the attributes it takes per this link: > > http://lucene.apache.org/core/4_3_0/analyzers-common/org/apache/lucene/analysis/miscellaneous/LimitTokenCountFilterFactory.html > . > It is also not mentioned at this link: > https://cwiki.apache.org/confluence/display/solr/ > > I'm looking for it to find out what happens if this filter is missing from > a fieldType. For example, when it is missing, is that the same as no-limit > or some hard-wired limit takes effect? Does anyone know? > > With older versions of Solr, I had to modify maxFieldLength to get all my > data into the index so I was looking for it and found that maxFieldLength > was removed as of 4.0. I'm using Solr 5.1. > > Thanks > > Steve >