码迷,mamicode.com
首页 > 其他好文 > 详细

配置smartcn分词器

时间:2019-04-16 14:38:56      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:query   serve   rtc   tokenizer   pac   org   textfield   分词   type   

  • 复制/opt/solr-7.7.1/contrib/analysis-extras/lucene-libs中的lucene-analyzers-smartcn-7.7.1.jar
    /opt/solr-7.7.1/server/solr-webapp/webapp/WEB-INF/lib

  • 编辑managed-schema文件加入
<!-- 配置smartcn分词器 -->
<fieldType name="text_smartcn" class="solr.TextField" positionIncrementGap="100">
  <analyzer type="index">
    <tokenizer class="org.apache.lucene.analysis.cn.smart.HMMChineseTokenizerFactory"/>
  </analyzer>
  <analyzer type="query">
    <tokenizer class="org.apache.lucene.analysis.cn.smart.HMMChineseTokenizerFactory"/>
  </analyzer>
</fieldType>
  • 测试分词效果

配置smartcn分词器

标签:query   serve   rtc   tokenizer   pac   org   textfield   分词   type   

原文地址:https://www.cnblogs.com/miye/p/10716544.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!