With fulltext search for MyISAM, I know that I can specify a stopword file in my.cnf with the following:
ft_stopword_file = '/etc/stopword.txt'
Can the same also be done with fulltext search for InnoDB? I'd like to do something like the following if possible:
ft_stopword_file_innodb = '/etc/stopword.txt'
However, I haven't seen any documentation indicating that stopwords for InnoDB can be stored in a file.