views:

47

answers:

1

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?

A: 

You might want to try porting one of Phonetix's analyzers (Soundex, Metaphone or DoubleMetaphone)

Mauricio Scheffer
Thanks for the reply, but I think Phonetix's Analyzers are written in Java, not in .NET
Am
@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