MySQL中文索引插件mysqlcft安裝及使用 mysql
1.MySQL必須是動態編譯安裝的,以便加載動態連接庫。 sql
2.編輯MySQL配置文件my.cnf,在[mysqld]段中加入ft_min_word_len=1(意爲最小詞所佔字節數) 數據庫
3.安裝mysqlcft中文全文索引插件 服務器
從命令行登入MySQL服務器 google
查看MySQL插件目錄 spa
Show variables like ‘plugin_dir’; 插件
下載mysqlcft中文索引插件,解壓後複製mysqlcft.so文件到MySQL的插件目錄下 命令行
https://code.google.com/p/mysqlcft 有32位與64位可選 code
開始安裝mysqlcft.so插件 索引
Install plugin mysqlcft soname ‘mysqlcft.so’;
查看mysqlcft.so插件是否安裝成功
show plugins;
4.卸載mysqlcft.so插件,卸載前請先刪除使用mysqlcft創建的全文索引。
uninstall plugin mysqlcft;
5.爲已經存在的表添加mysqlcft中文全文索引
建立單列全文索引
alter ignore table 數據庫名.表名 add fulltext index 全文索引名(字段名) with parser mysqlcft;
建立全文聯合索引
alter ignore table 數據庫名.表名 add fulltext index 全文聯合索引名(字段名1,字段名2) with parser mysqlcft;
6.查詢使用樣例
Select * from table where match(title) against(‘北京’ in Boolean mode);