MongoDB 支持 soundex 或模糊匹配吗?

发布于 2024-11-01 05:36:37 字数 73 浏览 1 评论 0原文

MongoDB 支持 soundex 或模糊匹配吗?我想发现基本联系人姓名和地址字段的欺骗行为。我正在使用官方 C# 驱动程序。谢谢

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋日私语 2024-11-08 05:36:37

Mongodb 不支持 soundex 匹配,但它具有全文搜索

还,

您始终可以只存储
soundex 编码的字符串位于单独的
mongo 中的字段并搜索
那。 Soundex 非常简单
算法并且应该只需要少数
行。

-- 来自 mongodb-user

Mongodb doesn't support soundex matching, but it has Full Text Search.

Also,

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.

-- from mongodb-user

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文