When I read the Lucene.net docs, the only analyzer that I find is the standard one. I want to make sure I can do Phonetic or Aproximative search on my index. Is there some extra library I should use on top of Lucene.net?
Asked
Active
Viewed 2,844 times
1 Answers
5
You might want to try porting one of Phonetix's analyzers (Soundex, Metaphone or DoubleMetaphone)

Mauricio Scheffer
- 98,863
- 23
- 192
- 275
-
Thanks for the reply, but I think Phonetix's Analyzers are written in Java, not in .NET – Roman Jul 12 '10 at 05:19
-
2@Am: yup, that's why I said "porting". They shouldn't be hard to port anyway, because Lucene.NET is very similar to Lucene Java. – Mauricio Scheffer Jul 12 '10 at 12:33