Solr分析器默认类型

发布于 2024-11-03 15:48:57 字数 338 浏览 0 评论 0原文

对于下面的定义,分析器的默认类型是什么?查询分析器和索引分析器都采用该定义吗?

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

囍孤女 2024-11-10 15:48:57

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

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文