We are trying to use Elastic Search in a Rails app and would like any input/code example on the implementation of "did you mean" feature. Essentially, we want to provide the end user an option to search for an alternate query like in google.

link|improve this question

50% accept rate
I know "google it" answers are not great (hence this is a comment), but looking for "ruby spelling correction" would be a good start. – NullUserException Aug 4 '11 at 4:49
I did implement this, but in Asp.net MVC3. We used the algorithm described here en.wikipedia.org/wiki/Levenshtein_distance. Try searching for "Fuzzy finding" on google. – eldewall Aug 4 '11 at 7:39
feedback

1 Answer

Elasticsearch doesn't have it yet, it is opened as issue here basically it is waiting for the next Lucene release.

I achieved a similar "did you mean" behaviour using the phonetic analyzers, which worked for my use case, location names, that is not gonna work for all use cases....

a example mapping:- https://gist.github.com/1171014

so you can query using the REST api like this (mispelled london):-

{
  "query": {
    "field": {
      "nameSounds": "lundon"
    }
  }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.