本篇内容主要讲解“solr4.7拼写检查怎么实现”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“solr4.7拼写检查怎么实现”吧!
天峻网站制作公司哪家好,找创新互联建站!从网页设计、网站建设、微信开发、APP开发、自适应网站建设等网站项目制作,到程序开发,运营维护。创新互联建站成立与2013年到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选创新互联建站。
①拼写检查不同于其他域,它在建立索引时需要分词,但是检索时不需要分词,所以要建立一个特殊的域,以供拼写检查:
在schema.xml文件里设置所需的拼写检查域都有哪些字段:
②在solrconfig.xml文件里设置:
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");//加权 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拼写检查怎么实现”有了更深的了解,不妨来实际操作一番吧!这里是创新互联网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!