solr 本地搭建

 
1. 运行
D:\solr-4.7.2\example
--> java -jar start.jar
 
2. 添加插件IK
D:\solr-4.7.2\example\solr-webapp\webapp\WEB-INF\classes
-->IKAnalyzer.cfg.xml
-->stopword.dic
 
D:\solr-4.7.2\example\solr-webapp\webapp\WEB-INF\lib
-->IKAnalyzer2012FF_u1.jar
一定要用这个版本的,兼容 solr 4.7.2
 
3.schema.xml  使用IK进行索引和分词查询
-->   
-->          
-->               class="org.wltea.analyzer.lucene.IKAnalyzer"/>
-->         
-->                class="org.wltea.analyzer.lucene.IKAnalyzer"/>
-->       
 
4. mysql 数据库进行分词索引
solrconfig.xml  添加数据库导入缓存或更新缓存
-->          class="org.apache.solr.handler.dataimport.DataImportHandler">
-->   
-->      data-config.xml
-->   
-->  
 
5.需要的jar包
D:\solr-4.7.2\example\solr-webapp\webapp\WEB-INF\lib
mysql-connector-java-5.1.25.jar
solr-dataimporthandler-4.7.2.jar
solr-dataimporthandler-extras-4.7.2.jar
 
 
6.data-config.xml
   
   
       
             deltaQuery="select id from wenda_question where updated_at > '${dataimporter.last_index_time}'"
             deletedPkQuery="select id from wenda_question where delete_flag = 1"  
             deltaImportQuery="select * from wenda_question where ID='${dataimporter.delta.ID}'"
            >
 
           
           
           
           
           
           
 
       
   
 
7.schema.xml 字段映射
  
  
  
  
  
  
 
8.elevate.xml  id 为long 出错修复  MA147LL/A 换成 1    IW-02 换成 2
    
  
 



来自为知笔记(Wiz)



你可能感兴趣的:(solr 本地搭建)