MySQL 全文搜索与 Like %%
它们的主要区别是什么?它们的用例是什么?谢谢!
What are key differences and what is a use case for both of them? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
它们的主要区别是什么?它们的用例是什么?谢谢!
What are key differences and what is a use case for both of them? Thanks!
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
全文搜索是一种基于特殊排序索引的搜索(显然是全文)。因此,您在使用它进行搜索时可以获得
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, whenlike %%
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