Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

According to this post on how to do query auto-completionsuggestions in lucene getting "Did You Mean" functionality best involves using a LuceneDictionary. But I probably would have used a fuzzy query for this before reading this post. Now I'm wondering which is faster, which is easier to implement?

share|improve this question
1  
You may find helpful this discussion: norvig.com/spell-correct.html – bernie Jun 8 '09 at 15:30
While not about Lucene, nor an answer, that page is a good read, and makes Python look awesome. – dlamblin Jun 8 '09 at 20:16

1 Answer

Have you looked at some NGram wrappers for Lucene. They are the best ways to do the "did you mean" functionality in Lucene. I found this page for the docs.

share|improve this answer
No, but I will. Thanks! – dlamblin Dec 30 '09 at 4:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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