Default Solr Analyzer Type

To determine below, what is the default analyzer type? Is the definition accepted for query and index parsers?

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

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

+5
source

All Articles