前言:
现在朋友们对“mysqlsphinx”大体比较关注,同学们都想要剖析一些“mysqlsphinx”的相关知识。那么小编也在网摘上收集了一些对于“mysqlsphinx””的相关资讯,希望你们能喜欢,咱们一起来学习一下吧!Coreseek搜索测试:MySQL原表结构==>MySQL索引表
第一步:创建测试数据库
create database test charset utf8;
set names utf8; #设置客户端字符集为"utf8"
use test;
create table test_news(
id int primary key auto_increment,
title varchar(255),
content text,
catid smallint
)charset utf8;
desc test_news;
insert into test_news(title,content,catid) values ('北京test网','test网出售thinkpad的笔记本电脑',1);
insert into test_news(title,content,catid) values ('北京天安门好','test网不断录制视频教程,免费开源分享',2);
第二步:设置配置文件
目的:
1、让Sphinx能够正常连接MySQL
2、让Sphinx能够读取数据
3、让Sphinx能生成索引表
修改配置文件:
cd /usr/local/coreseek/etc
cp sphinx.conf.dist csft.conf
第三步:进入coreseek的命令目录,进行"分词测试"
即:cd /usr/local/coreseek/bin
创建索引:./indexer --all
如果报错:
错误1:
/usr/local/coreseek/bin/indexer:error while loading shared libraries:libmysqlclient.so.16 cannot opent shared object file: No such file or directory
这主要是因为你安装库后,没有配置相应的环境变量.可以通过连接修正这个问题
ln -s /usr/local/mysql/lib/libmysqlclient.so.16 /usr/lib/libmysqlclient.so.16
对于64bit Linux,命令为:
ln -s /usr/local/mysql/lib/libmysqlclient.so.16 /usr/lib64/libmysqlclient.so.16
ln -s /usr/local/mysql/lib/libmysqlclient.so.18 /usr/lib64/libmysqlclient.so.18
错误2:./indexer: error while loading shared libraries: libiconv.so.2: cannot open shared object file: No such file or directory
解决办法如下:
1.在/etc/ld.so.conf中加一行/usr/local/lib,
2.然后运行/sbin/ldconfig,文件解决,没有报错了~~
chmod a+w /usr/local/coreseek/var/data
检索测试:./search thinkpad
./search 北京
结果图
标签: #mysqlsphinx