我需要对域名和 IP 地址使用全文搜索吗?
我有它的域名和IP地址。这几乎是200k,所以当我重新设计一个表时,我需要启用MySQL的全文搜索功能吗?
我还想要包含域名和 IP 地址的搜索表。意味着我按域搜索,那么它应该显示 IP 地址,如果我用 IP 搜索,那么它应该显示域名。
I do have domain names and ip address of it. this is almost 200k so when I redesign a table do I need to enable FULL TEXT SEARCH functionality of MySQL??
I want search table with domain names and IP address as well. means I search by domain then it should show IP address and if I search with IP then it should show domain names.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,您不需要使用全文搜索,也不需要启用全文搜索。
No, you don't need to use full text search and you don't need to enable FULL TEXT SEARCH.
这在一定程度上取决于您的数据结构。如果您有包含域名和 IP 地址的单独列,则这没有用:只需搜索字符串(或部分字符串,使用 LIKE)。如果您有大量文本(在单个列/字段中),其中还包括域名和 IP 地址,那么全文搜索可能会很有用。
That depends a bit on your data structure. If you have separate columns with domain names and IP addresses, this is not useful: just search for strings (or partial strings, with LIKE). If you have a large body of text (in a single column/field) which also includes domain names and IP addresses, then FULL TEXT SEARCH may be useful.