windows 上配置 solr4.3+中文分词器

\solr-4.3.0\dist\solr-4.3.0.war            to       D:\JobsDBSolr\solr-Example
\solr-4.3.0\example\solr\*                 to       D:\JobsDBSolr\solr-Example

\solr-4.3.0\example\lib\ext\*              to      \Tomcat 6.0\lib
\example\resources\log4j.properties   to       \Tomcat 6.0\lib
(须 知,solr-4.3.0.jar并没有自带日志打印组件,因此这个步骤不执行,可能引起 “org.apache.catalina.core.StandardContext filterStart SEVERE: Exception starting filter SolrRequestFilter org.apache.solr.common.SolrException: Could not find necessary SLF4j logging jars.”异常)

 

D:\JobsDBSolr\solr-Example\collection1\conf\solrconfig.xml
Add:(以便solr可以以javabin形式提交)

<requestHandler name="/update/javabin" class="solr.BinaryUpdateRequestHandler"/>

 

\Tomcat 6.0\conf\Catalina\localhost 下新建 solr-Example.xml

<Context antiJARLocking="true" docBase="D:\JobsDBSolr\solr-Example\solr-4.3.0.war"> 
    <Environment name="solr/home" type="java.lang.String" value="D:\JobsDBSolr\solr-Example" override="true"/>
</Context>

 
启动Tomcat http://127.0.0.1:8080/solr-Example

 

 

为Solr加入中文分词器

1 下载分词器:

下载中文分词器(IK Analyzer 2012FF_hf1.zip):http://ik-analyzer.googlecode.com/files/IK%20Analyzer%202012FF_hf1.zip

 

2 加入到Solr:

(1)将IKAnalyzer2012FF_u1.jar 复制到 D:\JobsDBSolr\solr-Example\lib 目录以及\Tomcat 6.0\webapps\solr-Example\WEB-INF\lib下面。

(2)在D:\JobsDBSolr\solr-Example 下面创建目录classes,并将IKAnalyzer.cfg.xml 和 stopword.dic 复制到这个目录。

(3)配置之前从解压的Solr拷贝出来的solr文件夹下的配置文件。 即D:\JobsDBSolr\solr-Example\collection1\conf目录下面的schema.xml配置文件。

随便找一个fieldType配置项的后面,加入一个新的fieldType配置项。

    <!-- IKAnalyzer 中文分词器配置 -->   
    <fieldType name="text_ik" class="solr.TextField">   
        <analyzer class="org.wltea.analyzer.lucene.IKAnalyzer">   
        </analyzer>    
    </fieldType>  

 

这就OK了,在浏览器中输入 http://localhost:80/solr/#/collection1/analysis
windows 上配置 solr4.3+中文分词器_第1张图片

 

 

在【field value(index)】中输入“我觉得我马上就要成功了,吃葡萄不吐葡萄皮。” ,下面下拉框选择text,然后点击analysis values按钮,如下图:
windows 上配置 solr4.3+中文分词器_第2张图片

 

 

你可能感兴趣的:(windows)