如何优化全文搜索?
我知道关于这个主题已经有很多问题,但我需要更具体的信息。所以这里是:
- 理想情况下,使用最少的资源(CPU、内存)执行全文搜索的最大字符长度应该是多少?
- 我什么时候应该决定使用
LIKE %$str%
和全文搜索? - 实现 LIKE %$str% 和全文搜索这两个版本并动态使用最佳版本是否很重要?
I know there are a lot of question already on this subject, but I needed more specific information. So here goes:
- Ideally what should be the maximum length of characters upon which a full text search can be performed using minimal resources (CPU, memory)?
- When should I decide between using the
LIKE %$str%
and full-text search? - Is it important to have both versions
LIKE %$str%
and full-text search implemented and use the optimal one dynamically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您知道索引中选择速度与插入速度的权衡吗?
You know the speed of select vs speed of insert tradeoff in indexes, right?