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
|
feedback
|
|
Sorry, but mongodb doesn't have soundex matching. it has Full Text Search.
| |||||||
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: | |||
|
feedback
|