您好,登錄后才能下訂單哦!
這篇文章主要介紹“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拼音檢索怎么實現”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。