中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

solr4.7拼音檢索怎么實現

發布時間:2021-12-22 17:39:54 來源:億速云 閱讀:217 作者:iii 欄目:互聯網科技

這篇文章主要介紹“solr4.7拼音檢索怎么實現”,在日常操作中,相信很多人在solr4.7拼音檢索怎么實現問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”solr4.7拼音檢索怎么實現”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

拼音檢索的大致思路是這樣的:

 ①將需要使用拼音檢索的字段匯集到一個拼音分詞字段里(我的拼音分詞字段使用pinyin4j+NGram做的)

 加入兩個jar包:pinyin4j-2.5.0.jar、pinyinAnalyzer.jar;

schema.xml文件設置:

<field name="pinyin" type ="text_pinyin" indexed ="true" stored ="false" multiValued ="true"/>
<copyField source="name" dest="pinyin"/>
 <copyField source="author" dest="pinyin"/>
 <copyField source="region" dest="pinyin"/>
 <copyField source="theme" dest="pinyin"/> 
<!-- by michael: pinyin  -->
  <fieldType name="text_pinyin" class="solr.TextField" positionIncrementGap="0"> 
     <analyzer type="index"> 
     <tokenizer class="org.apache.lucene.analysis.cn.smart.SmartChineseSentenceTokenizerFactory"/> 
     <filter class="org.apache.lucene.analysis.cn.smart.SmartChineseWordTokenFilterFactory"/> 
     <filter class="com.shentong.search.analyzers.PinyinTransformTokenFilterFactory" minTermLenght="2" /> 
     <filter class="com.shentong.search.analyzers.PinyinNGramTokenFilterFactory" minGram="6" maxGram="20" /> 
     </analyzer> 
     <analyzer type="query"> 
     <tokenizer class="org.apache.lucene.analysis.cn.smart.SmartChineseSentenceTokenizerFactory"/> 
     <filter class="org.apache.lucene.analysis.cn.smart.SmartChineseWordTokenFilterFactory"/> 
     <filter class="com.shentong.search.analyzers.PinyinTransformTokenFilterFactory" minTermLenght="2" /> 
     <filter class="com.shentong.search.analyzers.PinyinNGramTokenFilterFactory" minGram="6" maxGram="20" /> 
     </analyzer> 
  </fieldType>

②使用solrj進行拼音檢索:

/**
 * @method: testPhoneticize
 * @Description: 拼音檢索
 *    ??? 也會把不符合條件的檢索出來
 *    (解決方法:把漢子和相應的拼音建立同義詞)
 * @return void
 *
 * @author: ChenYW
 * @date 2014-4-16 下午01:44:57
 */
    public List<Map<String, String>> phoneticize(String pinyin){
  try {
   List<Map<String, String>> list = new ArrayList<Map<String, String>>();
   
   SolrQuery query = new SolrQuery();  
   query.set("q", "pinyin:"+pinyin);//高亮查詢字段  
         
         QueryResponse qr=server.query(query);//執行查詢  
         SolrDocumentList dlist=qr.getResults();  
         
         System.out.println("總數:"+dlist.getNumFound());
         Map<String, String> mapRe = null;
         for(SolrDocument sd:dlist){  
             mapRe = new HashMap<String, String>();
             mapRe.put("name", sd.getFieldValue("name").toString());
             mapRe.put("content", sd.getFieldValue("content").toString().substring(0,200));
             list.add(mapRe);
         }
         
         return list;
  } catch (SolrServerException e) {
   e.printStackTrace();
  }
  return null;
 }

到此,關于“solr4.7拼音檢索怎么實現”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新安县| 自治县| 安化县| 濮阳县| 沾益县| 嘉鱼县| 八宿县| 平乡县| 北京市| 长宁县| 长汀县| 怀柔区| 常德市| 永修县| 库尔勒市| 武汉市| 平和县| 伽师县| 呼伦贝尔市| 东光县| 即墨市| 改则县| 保德县| 鹤岗市| 聊城市| 江西省| 诸城市| 荣昌县| 鹤壁市| 秭归县| 宜都市| 张家港市| 盐山县| 江孜县| 临湘市| 德清县| 永清县| 鲁甸县| 蓝山县| 辽阳市| 广南县|