且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何配置Solr以使用Levenshtein近似字符串匹配?

更新时间:2022-11-14 09:01:41

通常使用 SpellCheckComponent ,默认情况下内部使用 Lucene SpellChecker 来实现Levenshtein. >

Wiki 确实很好地解释了它的工作原理,如何配置以及有哪些选项可用,这里不再赘述.

或者您可以只使用 Lucene的模糊搜索运算符.

另一个选择是使用语音过滤器而不是Levenshtein.

Does Apaches Solr search engine provide approximate string matches, e.g. via Levenshtein algorithm?

I'm looking for a way to find customers by last name. But I cannot guarantee the correctness of the names. How can I configure Solr so that it would find the person "Levenshtein" even if I search for "Levenstein" ?

Typically this is done with the SpellCheckComponent, which internally uses the Lucene SpellChecker by default, which implements Levenshtein.

The wiki really explains very well how it works, how to configure it and what options are available, no point repeating it here.

Or you could just use Lucene's fuzzy search operator.

Another option is using a phonetic filter instead of Levenshtein.