【发布时间】:2016-10-02 19:13:58
【问题描述】:
通过对 MyISAM 的全文搜索,我知道我可以在 my.cnf 中指定一个停用词文件,其中包含以下内容:
ft_stopword_file = '/etc/stopword.txt'
InnoDB 的全文搜索也能做到这一点吗?如果可能的话,我想做类似以下的事情:
ft_stopword_file_innodb = '/etc/stopword.txt'
但是,我没有看到任何文档表明 InnoDB 的停用词可以存储在文件中。
【问题讨论】:
标签: mysql innodb myisam stop-words