MySQL 全文搜索与 Like %%

发布于 2024-10-31 20:03:13 字数 30 浏览 0 评论 0原文

它们的主要区别是什么?它们的用例是什么?谢谢!

What are key differences and what is a use case for both of them? Thanks!

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

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

发布评论

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

评论(1

鸠书 2024-11-07 20:03:13

全文搜索是一种基于特殊排序索引的搜索(显然是全文)。因此,您在使用它进行搜索时可以获得 O(lgN) 的强大功能。

like %% always 会导致表全扫描,这可能会非常慢(当您有 100k 或更多行时)。

就我个人而言,当它是一个小表(0-1000行)时,我使用Like %%,并且我确信它永远不会增长(而且,重要的是,当like %% 符合任务要求)。

注意:全文索引仅适用于 myisam SE。如果您使用 innodb - 那么您需要查看一些第三方索引软件,例如 sphinx

Full-text search is the kind of search based on special sort of index (full-text, obviously). So you get the power of O(lgN) while searching using it.

While like %% always causes table fullscan which can be terrible slow (when you have 100k and more rows).

Personally I use Like %% when it is a small table (0-1000 rows) and I'm sure that it will never grow (and, important, when like %% fits the task requirements).

Note: fulltext indexes are available only for myisam SE. If you use innodb - then you need to look at some 3rd party indexing software like sphinx

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