solr中文分词(mmseg4j) 编辑

1、从http://code.google.com/p/mmseg4j/ 下载mmseg4j

solr中文分词(mmseg4j) 编辑_第1张图片

2、在$SOLR_HOME下建立lib和dic两个目录,讲mmseg4j-all-1.8.4.jar拷贝到lib目录,将data里的.dic文件拷贝到dic目录

3、修改Schema.xml

添加fieldType

Xml代码 收藏代码
  1. <types>
  2. <fieldTypename="textComplex"class="solr.TextField"positionIncrementGap="100">
  3. <analyzer>
  4. <tokenizerclass="com.chenlb.mmseg4j.solr.MMSegTokenizerFactory"mode="complex"dicPath="/opt/solr/example/solr/dic"/>
  5. <filterclass="solr.LowerCaseFilterFactory"/>
  6. </analyzer>
  7. </fieldType>
  8. <fieldTypename="textMaxWord"class="solr.TextField"positionIncrementGap="100">
  9. <analyzer>
  10. <tokenizerclass="com.chenlb.mmseg4j.solr.MMSegTokenizerFactory"mode="max-word"dicPath="/opt/solr/example/solr/dic"/>
  11. <filterclass="solr.LowerCaseFilterFactory"/>
  12. </analyzer>
  13. </fieldType>
  14. <fieldTypename="textSimple"class="solr.TextField"positionIncrementGap="100">
  15. <analyzer>
  16. <tokenizerclass="com.chenlb.mmseg4j.solr.MMSegTokenizerFactory"mode="simple"dicPath="/opt/solr/example/solr/dic"/>
  17. <filterclass="solr.LowerCaseFilterFactory"/>
  18. </analyzer>
  19. </fieldType>
  20. ..
  21. </types>
Xml代码 收藏代码
  1. <fieldname="simple"type="textSimple"indexed="true"stored="true"multiValued="true"/>
  2. <fieldname="complex"type="textComplex"indexed="true"stored="true"multiValued="true"/>
  3. <fieldname="maxword"type="textMaxWord"indexed="true"stored="true"multiValued="true"/>
Xml代码 收藏代码
  1. <copyFieldsource="simple"dest="text"/>
  2. <copyFieldsource="complex"dest="text"/>

重启tomcat


进入 http://yourhost:8080/solr-example/admin/analysis.jsp

solr中文分词(mmseg4j) 编辑_第2张图片

哦也,我们的中文分词大功告成了

我们试着提交些中文到solr里,然后进行查询

Xml代码 收藏代码
  1. chinese.xml
  2. <add>
  3. <doc>
  4. <fieldname="id">1</field>
  5. <fieldname="title">夜晚和白天不同,如果相机设置不准确的话,照片拍出来就会发糊。那么本期佳能单反课堂就带您详细了解夜景拍摄的参数设置,同时为您讲解什么叫做“安全快门”。除此之外,还有更多新奇有趣的特殊拍摄手法,还等什么?马上进入本期的节目吧!</field>
  6. </doc>
  7. <doc>
  8. <fieldname="id">2</field>
  9. <fieldname="title">冰动娱乐自主研发的虚幻3即时回合制网络游戏!UnrealEngine3倾力打造、最终幻想式的创新玩法以及天马行空般的幻想三国题材将带给你耳目一新的全新感受。</field>
  10. </doc>
  11. <doc>
  12. <fieldname="id">3</field>
  13. <fieldname="title">solr是基于LuceneJava搜索库的企业级全文搜索引擎,目前是apache的一个项目。</field>
  14. </doc>
  15. <doc>
  16. <fieldname="id">4</field>
  17. <fieldname="title">中国人民银行是中华人民共和国的中央银行。</field>
  18. </doc>
  19. </add>

我们用curl进行提交

命令行代码 收藏代码
  1. curl'http://localhost:8080/solr-example/update/?commit=true'-H"Content-Type:text/xml"[email protected]

接下来我们试着查询一下:

solr中文分词(mmseg4j) 编辑_第3张图片

查询结果

Xml代码 收藏代码
  1. <response>
  2. <lstname="responseHeader">
  3. <intname="status">0</int>
  4. <intname="QTime">2</int>
  5. <lstname="params">
  6. <strname="indent">on</str>
  7. <strname="start">0</str>
  8. <strname="q">title:单反</str>
  9. <strname="rows">10</str>
  10. <strname="version">2.2</str>
  11. </lst>
  12. </lst>
  13. <resultname="response"numFound="1"start="0">
  14. <doc>
  15. <strname="id">1</str>
  16. <arrname="title"><str>夜晚和白天不同,如果相机设置不准确的话,照片拍出来就会发糊。那么本期佳能单反课堂就带您详细了解夜景拍摄的参数设置,同时为您讲解什么叫做“安全快门”。除此之外,还有更多新奇有趣的特殊拍摄手法,还等什么?马上进入本期的节目吧!</str></arr>
  17. </doc>
  18. </result>
  19. </response>

可能会遇到的问题:

1、在Query String:输入中文时候会乱码导致查询不到结果

解决办法:修改tomcat的server.xml

Xml代码 收藏代码
  1. <Server...>
  2. <Service...>
  3. <Connector...URIEncoding="UTF-8"/>
  4. ...
  5. </Connector>
  6. </Service>
  7. </Server>

你可能感兴趣的:(mmseg4j)