Windows下面安裝和配置Solr 4.9(三)支援中文分詞器

來源:互聯網
上載者:User

標籤:Lucene   style   blog   http   color   java   使用   os   

首先將下載解壓後的solr-4.9.0的目錄裡面找到lucene-analyzers-smartcn-4.9.0.jar檔案,

將它複製到solr的應用程式裡面D:\apache-tomcat-7.0.54\webapps\solr\WEB-INF\lib,

備忘:網上很多文章使用IK中文分詞器(IK_Analyzer2012_u6.jar)但是在solr-4.9.0版本中,我是一直沒有配置成功。所以只能使用solr內建的中文分詞器了。

在回到solr的應用程式目錄(D:\Demos\Solr\collection1\conf)

修改schema.xml,讓solr能夠支援中文的分詞。

 1 <fieldType name="text_smart" class="solr.TextField" positionIncrementGap="100"> 2       <analyzer type="index"> 3       <!-- 此處需要配置主要的分詞類 --> 4         <tokenizer class="solr.SmartChineseSentenceTokenizerFactory"/> 5         <!-- 6         <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" enablePositionIncrements="true" /> 7         <filter class="solr.LowerCaseFilterFactory"/> 8         --> 9         <!-- in this example, we will only use synonyms at query time10         <filter class="solr.SynonymFilterFactory" synonyms="index_synonyms.txt" ignoreCase="true" expand="false"/>11         -->12         <filter class="solr.SmartChineseWordTokenFilterFactory"/>13       </analyzer>14       <analyzer type="query">15       <!-- 此處配置同上 -->16         <tokenizer class="solr.SmartChineseSentenceTokenizerFactory"/>17         <!--18         <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" enablePositionIncrements="true" />19         <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>20         <filter class="solr.LowerCaseFilterFactory"/>21         -->22         <filter class="solr.SmartChineseWordTokenFilterFactory"/>23       </analyzer>24 </fieldType>
schema.xml

儲存之後,重起tomcat伺服器,在地址欄中輸入網址:http://localhost:8080/solr/訪問solr

看到上面這個介面就說明配置中文分詞成功啦。。。再次強調一下,java的配置真的很麻煩!希望這種圖文並茂的教程在網上能夠真心多一點,搞了好幾天才搞定中文分詞的配置。遺憾的是網上說的使用IK中文分詞還是沒有在solr-4.9.0中搞定。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.