Solr analyzer default type

2.3k Views Asked by At

For the definition below, what is the default type of the analyzer? Is the definition assumed for both query and index analyzers?

<fieldType name="text_nicesort" class="solr.TextField" positionIncrementGap="100">
  <analyzer>
    <tokenizer class="solr.KeywordMarkerFilterFactory"/>
    <filter class="solr.LowerCaseFilterFactory"/>
  </analyzer>
</fieldType>
1

There are 1 best solutions below

1
On BEST ANSWER

Yes, if the type is not defined, the same analyzer is used for both index and query.