Solr分析器默认类型
对于下面的定义,分析器的默认类型是什么?查询分析器和索引分析器都采用该定义吗?
<fieldType name="text_nicesort" class="solr.TextField" positionIncrementGap="100">
<analyzer>
<tokenizer class="solr.KeywordMarkerFilterFactory"/>
<filter class="solr.LowerCaseFilterFactory"/>
</analyzer>
</fieldType>
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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,如果未定义类型,则索引和查询将使用相同的分析器。
Yes, if the type is not defined, the same analyzer is used for both index and query.