亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

柞水县| 高密市| 平度市| 纳雍县| 山丹县| 新兴县| 肇东市| 桃园市| 郧西县| 韩城市| 兴国县| 合川市| 吕梁市| 舞钢市| 电白县| 芒康县| 临汾市| 长丰县| 桑植县| 礼泉县| 普定县| 柯坪县| 沙雅县| 岑巩县| 陇西县| 洱源县| 岗巴县| 河源市| 松溪县| 宣武区| 观塘区| 商水县| 阜平县| 师宗县| 五大连池市| 鄂州市| 红桥区| 商河县| 措勤县| 新巴尔虎左旗| 永和县|