Configure and use Solr spellCheck

Source: Internet
Author: User
Tags solr

Solr has the spelling check function. You only need to modify the spellcheck section in solr configuration file (solrconfig. xml:

<SearchComponent name = "spellcheck" class = "solr. SpellCheckComponent">

<Str name = "queryAnalyzerFieldType"> textSpell </str>

<! -- Likehua 20121227 -->
<Lst name = "spellchecker">
<Str name = "classname"> solr. FileBasedSpellChecker </str>
<Str name = "name"> file </str>
<Str name = "sourceLocation"> spellings.txt </str>
<Str name = "characterEncoding"> UTF-8 </str>
<STR name = "spellcheckindexdir"> spellcheckerfile </STR>
</Lst>

</Searchcomponent>

In spelling.txt, if you want to add Chinese characters, make sure there is no Bom encoding for the UTF-8.

Example (one line per word:

Pizza
History
Chen Hua

Http: // localhost: 1985/SOLR/spell? Spellcheck. q = % E6 % 9d % 8e % E5 % 85% 8B % E8 % af % 9d & spellcheck = true & spellcheck. dictionary = file & spellcheck. Build = true

Search Result:

The keyword to be retrieved must be encoded using encodeuri on the client.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.