Home > Database > Mysql Tutorial > 解除mysql 的全文索引限制

解除mysql 的全文索引限制

WBOY
Release: 2016-06-07 16:21:16
Original
1223 people have browsed it

Mysql 4.0 开始就支持全文索引功能,但是 Mysql 默认的最小索引长度是 4。 对于英文来说,这个设置是合理的,但是对于中文或者日文,这个设置就很不合理。 so,修改mysql的配置(my.cnf文件): 在 [mysqld] 后面加入一行 fft_min_word_len = n n为小于4的数字

   Mysql 4.0 开始就支持全文索引功能,但是 Mysql 默认的最小索引长度是 4。

  对于英文来说,这个设置是合理的,但是对于中文或者日文,这个设置就很不合理。

  so,,修改mysql的配置(my.cnf文件):

  在 [mysqld] 后面加入一行

  fft_min_word_len = n

  n为小于4的数字。重启mysql即可。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template