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

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

share|improve this question

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

share|improve this answer
2  
MongoDB has no real fulltext search. Pattern matching is no fulltext search. – esaelPsnoroMoN 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. – esaelPsnoroMoN Apr 13 '11 at 17:05

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

share|improve this answer

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.