1. 下载 插件 mysqlcft
2. 查看 mysql 插件目录
show variables like 'plugin_dir'
3. 解压下载后的tar包文件, 复制 mysqlcft.so 文件 到插件目录下
4.编辑配置 my.cnf 文件
在 [mysqlId] 段中假如 ft_min_word_len=1 (意为最小词所占的字节数)
5. 开始安装mysqlcft.so 插件
Install plugin mysqlcft soname 'mysqlcft.so'
6. 创建全文索引
alter table tb_name add fulltext [ index ] 索引名(字段名)
with parser mysqlcft
7. 全文索引的查找
select * from tb_name where match(content) against('搜索内容'
in Boolean mode
);