简体   繁体   中英

Solr analyzer default type

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>

是的,如果未定义类型,则索引和查询都使用相同的分析器。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM