Mysql 我的stopwords列表已加载,但不起作用

Mysql 我的stopwords列表已加载,但不起作用,mysql,stop-words,Mysql,Stop Words,我有一个修改过的stopwords列表文件,基本上去掉了单词“孤独”。我已更新了我的/etc/my.cnf ft_stopword_file=/etc/new_stopwords_list.txt 在重新启动mysql服务器之后,我做了以下操作,以表明mysql确实在接收新变量 SHOW VARIABLES LIKE '%ft_stop%' +------------------+-----------------------------+ | Variable_name | Valu

我有一个修改过的stopwords列表文件,基本上去掉了单词“孤独”。我已更新了我的
/etc/my.cnf

ft_stopword_file=/etc/new_stopwords_list.txt
在重新启动mysql服务器之后,我做了以下操作,以表明mysql确实在接收新变量

SHOW VARIABLES LIKE '%ft_stop%'

+------------------+-----------------------------+
| Variable_name    | Value                       |
+------------------+-----------------------------+
| ft_stopword_file | /etc/new_stopwords_list.txt |
+------------------+-----------------------------+

之后,我做了一个修复表来更新索引。但是,当我进行搜索时,新设置似乎没有生效。我做错了什么?

您使用的是什么模式?。这可能是因为50%的门槛。你检查过这个方向了吗。