欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

solr配置IK-Analyzer分词器

程序员文章站 2022-03-11 08:26:58
...

1.将IKAnalyzer2012FF_u1.jar放到
D:\apache-tomcat-7.0.88\webapps\solr\WEB-INF\lib目录里。


2.在D:\apache-tomcat-7.0.88\webapps\solr\WEB-INF目录里新建文件夹classes
将IKAnalyzer.cfg.xml和stopword.dic在到里面

IKAnalyzer.cfg.xml内容

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">  
<properties>  
	<comment>IK Analyzer 扩展配置</comment>
	<!--用户可以在这里配置自己的扩展字典 
	<entry key="ext_dict">ext.dic;</entry> 
	-->
	<!--用户可以在这里配置自己的扩展停止词字典-->
	<entry key="ext_stopwords">stopword.dic;</entry> 
	
</properties>

stopword.dic内容

华人
中华
a
an
and
are
as
at
be
but



3.在D:\solr_home\hotel\conf\schema.xml文件中添加如下内容
<fieldType name="text_ik" class="solr.TextField">
<analyzer type="index" isMaxWordLength="false" class="org.wltea.analyzer.lucene.IKAnalyzer" />
<analyzer type="query" isMaxWordLength="true" class="org.wltea.analyzer.lucene.IKAnalyzer" />
</fieldType>

4.将所需要的字段配置为"text_ik"类型
修改D:\solr_home\hotel\conf\schema.xml文件内容

<field name="hotelName" type="string" indexed="true" stored="true"/>
<field name="address" type="string" indexed="true" stored="true"/>
改为
<field name="hotelName" type="text_ik" indexed="true" stored="true"/>

<field name="address" type="text_ik" indexed="true" stored="true"/>

ps: 分词器配置完成之后一定要重新导入数据(我掉坑里过)

IKAnalyzer分词器下载:
https://code.google.com/p/ik-analyzer/downloads/list
https://github.com/medcl/elasticsearch-analysis-ik
http://download.csdn.net/download/tjcyjd/8420639