Re: Solr fuzzy search with WordDemiliterFilter

2013-03-29 Thread Jack Krupansky
The use of the fuzzy query operator will suppress the Word Delimiter Filter at query time. That's just the way it works. You can't use both fuzzy query and WDF when WDF is splitting apart words, numbers, and case changes, and throwing away special characters as well. To put it simply, at query

Re: Solr Fuzzy search on short string

2013-03-26 Thread Jack Krupansky
Could your provide the precise query URLs. I don't quite follow the notation you are using, especially: car[x]~, [x]>"i". I mean, are you saying that q=cari~ does not match "carl"? (You left out the tilda in your message.) -- Jack Krupansky -Original Message- From: Jimmy Dean Sent:

Re: Solr Fuzzy

2010-10-14 Thread Claudio Devecchi
tks moysidis On Thu, Oct 14, 2010 at 3:45 PM, Savvas-Andreas Moysidis < savvas.andreas.moysi...@googlemail.com> wrote: > Hi, > > yes, Solr does support fuzzy queries by using the Levenstein Distance > algorithm: > http://en.wikipedia.org/wiki/Damerau%E2%80%93Levenshtein_distance > > You can speci

Re: Solr Fuzzy

2010-10-14 Thread Savvas-Andreas Moysidis
Hi, yes, Solr does support fuzzy queries by using the Levenstein Distance algorithm: http://en.wikipedia.org/wiki/Damerau%E2%80%93Levenshtein_distance You can specify a fuzzy query by adding a tilde (~) symbol at the end of your query as in title: Solr~ You can even specify a proximity threshold