本篇內(nèi)容主要講解“solr4.7拼寫檢查怎么實現(xiàn)”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“solr4.7拼寫檢查怎么實現(xiàn)”吧!
天峻網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、自適應(yīng)網(wǎng)站建設(shè)等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)建站成立與2013年到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)建站。
①拼寫檢查不同于其他域,它在建立索引時需要分詞,但是檢索時不需要分詞,所以要建立一個特殊的域,以供拼寫檢查:
在schema.xml文件里設(shè)置所需的拼寫檢查域都有哪些字段:
②在solrconfig.xml文件里設(shè)置:
text_spell default spell solr.DirectSolrSpellChecker internal 0.5 2 1 5 2 0.01 solr.FileBasedSpellChecker file spellings.txt UTF-8 spellcheckerFile spell default on true true spellerror
③solrj里的代碼
/** * @method: testSpellCheck * @Description: 拼寫檢查 * * @author: ChenYW * @date 2014-4-15 下午06:14:56 */ public String spellCheck(String word){ SolrQuery query = new SolrQuery(); query.set("defType","edismax");//加權(quán) query.set("qf","name^20.0"); query.set("spellcheck", "true"); query.set("spellcheck.q", word); query.set("qt", "/spell"); query.set("spellcheck.build", "true");//遇到新的檢查詞,會自動添加到索引里面 query.set("spellcheck.count", 5); try { QueryResponse rsp = server.query(query); SpellCheckResponse re=rsp.getSpellCheckResponse(); if (re != null) { if(!re.isCorrectlySpelled()){ String t = re.getFirstSuggestion(word);//獲取第一個推薦詞 System.out.println("推薦詞:" + t); return t; } } } catch (SolrServerException e) { e.printStackTrace(); } return null; }
到此,相信大家對“solr4.7拼寫檢查怎么實現(xiàn)”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學習!