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

Lucene fuzzy matching uses a basic editDistance algorithm to implement fuzzy matching. Are there other implementations of fuzzy matching for Lucene which use other similarity metrics? They should identify homphones also. Also please compare various fuzzy matching approaches for lucene.

share|improve this question

1 Answer

Don't think Lucene offers any other string matching algorithms, you can however add one yourself. Here is a good library that contains most well known string comparison algorithms.

share|improve this answer
can this be integrated with lucene. – iamrohitbanga May 19 '10 at 4:38
You can write your own analyzer to integrate the approaches.Writing an analyzer is quite simple and there are plenty of resources (google it up). – Mikos May 19 '10 at 14:54
The project site is down, but it's in WayBack: web.archive.org/web/20081230184321/http://www.dcs.shef.ac.uk/… The library itself (SimMetrics, GPL) is here: sourceforge.net/projects/simmetrics – seanf Jul 17 '12 at 0:49

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.