Does MongoDB support soundex or fuzzy matching? I want to spot dupes of basic contact name and address fields. I'm using the official C# driver. Thanks

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Sorry, but mongodb doesn't have soundex matching. it has Full Text Search.

You can always just store the soundex-encoded string in a separate field in mongo and search against that. Soundex is a really trivial algorithm and should only take a handful of lines.

source of quote

link|improve this answer
1  
MongoDB has no real fulltext search. Pattern matching is no fulltext search. – Blackmoon Apr 13 '11 at 15:00
You should have quoted the followup of your quote...sorry but using soundex for this purpose is just a bad idea. – Blackmoon Apr 13 '11 at 17:05
feedback

MongoDB does not support real fulltext search and nothing like soundex (which is a very bad part for matching terms - something like Levensthein distance calculation is much better).

In addition look at my last comment here:

Full-text search in NoSQL databases

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.