`
liu86th
  • 浏览: 117934 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

[centos]配置coreseek

 
阅读更多

[1] 复制配置文件到coreseek的etc

cp /data/src/coreseek-3.2.14/testpack/etc/csft.conf /usr/local/coreseek/etc/csft.conf

 

[2] 修改配置文件

source src1{
        type 		= mysql
        sql_host 	= localhost
        sql_user 	= root
        sql_pass 	= 
        sql_db 		= test
        sql_port 	= 3306
        sql_query_pre 		= SET NAMES utf8
        sql_query 			= SELECT id,title,content,create_time FROM ps_news
        sql_attr_uint 		= id
        sql_attr_timestamp  = create_time
        sql_query_info_pre  = SET NAMES utf8
}

index src1{
        source = src1
        path 			= /usr/local/coreseek/var/data/src1/
        docinfo 		= extern
        mlock 			= 0
        morphology 		= none
        min_word_len 	= 1
        html_strip 		= 0

        charset_type 		= zh_cn.utf-8
        charset_dictpath 	= /usr/local/mmseg3/etc/
        #charset-table 		= 0..9, A..Z->a..z, _, a..z, U+410..U+42F->U+430..U+44F, U+430..U+44F
        #ngram_len 			= 1
        #ngram_chars 		= U+3000..U+2FA1F
}

#global indexer
indexer
{
    mem_limit            = 128M
}

#searchd
searchd
{
    listen              = 9312
    read_timeout        = 5
    max_children        = 30
    max_matches         = 1000
    seamless_rotate     = 0
    preopen_indexes     = 0
    unlink_old			= 1
    pid_file			= /usr/local/coreseek/var/log/searchd_rtindex.pid
    log 				= /usr/local/coreseek/var/log/searchd_rindex.log       
    query_log 			= /usr/local/coreseek/var/log/query_rtindex.log
}

     a. source是配置数据源,按照提示输入MYSQL的主机、帐号、密码和数据库即可,我的MYSQL就安装在本机上(MYSQL的安装可自行百度)

  b. sql_query_pre是在执行查询之前执行的SQL语句。(注意:在coreseek只能识别utf8字符集编码,所以我们要执行转换一下)

  c. sql_query是要查询进行索引的SQL语句,sql_attr_unit和sql_attr_timestamp是设置属性的,属性在全文检索中可以用来设置过滤和排序。

  d.  index和source应该是成对出现,index就是配置索引的功能(我们还可以配置多个索引 主索引+增量索引的功能)

  e. searchd是常驻进程的全文检索服务,默认监控本机的9312端口

  f. charset_type和charset_dictpath是中文分词配置

4. 创建索引和测试全文检索

  上面我们配置了MYSQL数据源,我们要做到是test库中的documents表进行全文检索,为了测试全文检索的效率,我批量插入了该表30W的数据,以下我们就对该表进行索引测试和全文检索测试。

[3] 测试indexer索引

$ cd /usr/local/coreseek/
$  /usr/local/coreseek/bin/indexer -c etc/csft.conf
##以下为正常情况下的提示信息:
    Coreseek Fulltext 3.2 [ Sphinx 0.9.9-release (r2117)]
    Copyright (c) 2007-2010,
    Beijing Choice Software Technologies Inc (http://www.coreseek.com)

     using config file 'etc/csft.conf'...
    total 0 reads, 0.000 sec, 0.0 kb/call avg, 0.0 msec/call avg
    total 0 writes, 0.000 sec, 0.0 kb/call avg, 0.0 msec/call avg

 

[4] 创建sphinx索引文件

$  /usr/local/coreseek/bin/indexer -c etc/csft.conf --all
##以下为正常索引全部数据时的提示信息:(csft-4.0版类似)
    Coreseek Fulltext 3.2 [ Sphinx 0.9.9-release (r2117)]
    Copyright (c) 2007-2010,
    Beijing Choice Software Technologies Inc (http://www.coreseek.com)

     using config file 'etc/csft.conf'...
    indexing index 'xml'...
    collected 3 docs, 0.0 MB
    sorted 0.0 Mhits, 100.0% done
    total 3 docs, 7585 bytes
    total 0.075 sec, 101043 bytes/sec, 39.96 docs/sec
    total 2 reads, 0.000 sec, 5.6 kb/call avg, 0.0 msec/call avg
    total 7 writes, 0.000 sec, 3.9 kb/call avg, 0.0 msec/call avg

   a.如果出现这样的错误

ERROR: index 'src1': sql_connect: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) (DSN=mysql://root:***@localhost:3306/test).

   b.解决方法

ERROR: index 'src1': sql_connect: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) (DSN=mysql://root:***@localhost:3306/test).

#注:如果不存在/var/lib/mysql/mysql.sock文件,则可以用:
#ln -s /tmp/mysql.sock /var/lib/mysql/mysql.sock即可

 

[5]使用search程序测试全文检索(注意是search不是searchd)

 

[root@kewen coreseek]# /usr/local/coreseek/bin/search -c etc/csft.conf 
Coreseek Fulltext 3.2 [ Sphinx 0.9.9-release (r2117)]
Copyright (c) 2007-2011,
Beijing Choice Software Technologies Inc (http://www.coreseek.com)

 using config file 'etc/csft.conf'...
index 'src1': query '': returned 1000 matches of 1245184 total in 0.046 sec

displaying matches:
1. document=1, weight=1, create_time=Fri Jan  3 23:36:17 2014
2. document=2, weight=1, create_time=Fri Jan  3 23:36:19 2014

....

[root@kewen coreseek]# /usr/local/coreseek/bin/search -c etc/csft.conf -a title1
Coreseek Fulltext 3.2 [ Sphinx 0.9.9-release (r2117)]
Copyright (c) 2007-2011,
Beijing Choice Software Technologies Inc (http://www.coreseek.com)

 using config file 'etc/csft.conf'...
index 'src1': query 'title1 ': returned 1000 matches of 1245184 total in 0.161 sec

displaying matches:
1. document=1, weight=1, create_time=Fri Jan  3 23:36:17 2014
2. document=2, weight=1, create_time=Fri Jan  3 23:36:19 2014
3. document=3, weight=1, create_time=Fri Jan  3 23:36:37 2014
4. document=4, weight=1, create_time=Fri Jan  3 23:36:38 2014
5. document=5, weight=1, create_time=Fri Jan  3 23:36:38 2014
6. document=6, weight=1, create_time=Fri Jan  3 23:36:38 2014
7. document=7, weight=1, create_time=Fri Jan  3 23:36:38 2014
8. document=8, weight=1, create_time=Fri Jan  3 23:36:38 2014
9. document=9, weight=1, create_time=Fri Jan  3 23:36:39 2014

...

 

 [6] 开启searchd服务

 

开启searchd服务,使能用API程序进行调用(注意:你需要配置你的防火墙或者关闭,和关闭selinux)

- service iptables stop #暂时关闭防火墙
- setenforce 0  # 暂时关闭selinux

$  /usr/local/coreseek/bin/searchd -c etc/csft.conf
##以下为正常开启搜索服务时的提示信息:(csft-4.0版类似)
    Coreseek Fulltext 3.2 [ Sphinx 0.9.9-release (r2117)]
    Copyright (c) 2007-2010,
    Beijing Choice Software Technologies Inc (http://www.coreseek.com)

    using config file 'etc/csft.conf'...
    listening on all interfaces, port=9312
##如要停止搜索服务,请使用/usr/local/coreseek/bin/searchd -c etc/csft.conf --stop
##如要已启动服务,要更新索引,请使用/usr/local/coreseek/bin/indexer -c etc/csft.conf --all --rotate

 

[7] 测试代码

 

<?php
error_reporting(E_ALL ^ E_NOTICE);
header("Content-type: text/html; charset=utf-8"); 

require ( "sphinxapi.php" );
define(INDEX_SRC1, 'src1');

$cl = new SphinxClient();
$cl->SetServer("localhost",9312);
$cl->SetArrayResult(true);

$keyword = "标题";
$result = $cl->Query($keyword, INDEX_SRC1);

echo '<pre>';
print_r($result);

//处理$result
$matches = isset($result['matches']) ? $result['matches'] : '';
if(is_array($matches)){
    foreach ($matches as $v){
        $ids[] = $v['id'];
    }
}else{
    print("<pre>");    
    print $cl->GetLastError();
    print $cl->GetLastWarning();
    //print "没找到了亲~";
    print("<pre>");
    return;
}
$ids = implode(',', $ids);


//拿着id ,拉库
$link = mysql_connect('localhost','root','') or die('mysql link fail!');
mysql_select_db('test',$link);
mysql_query("SET NAMES UTF8");

$sql = "select * from ps_news where id in({$ids})";
$result = mysql_query($sql,$link);

$data = array();
while ($row = mysql_fetch_assoc($result))
{
       $data[] = $row;
}
mysql_close($link);


// 关键字高亮
$p_titles = array();
$p_contents = array();

$build_opts= array(//查询结果集设置
    'before_match'=> '<font color="red">',
    'after_match'=> '</font>',
    'limit'=> '130',
    //'exact_phrase'=> true,
    'single_passage'=> true,
    'chunk_separator' => '',
);

foreach($data as $key=>$value)
{
    $p_titles[$key] = $value['title'];
    $p_contents[$key] = $value['content'];
}

$p_titles   = $cl->BuildExcerpts($p_titles, INDEX_SRC1, $keyword, $build_opts);
$p_contents = $cl->BuildExcerpts($p_contents, INDEX_SRC1, $keyword, $build_opts);

foreach($data as $key=>$post)
{
    $data[$key]['title']  = $p_titles[$key];
    $data[$key]['content'] = $p_contents[$key];
}

var_dump($data);
?>

 

分享到:
评论

相关推荐

    centos 6.5安装coreseek,亲测ok

    总结,安装和配置CoreSeek在CentOS 6.5上虽然涉及到多个步骤,但只要按照上述步骤操作,就能成功搭建一个高效、稳定的全文检索环境。记住,每个环节都要仔细检查,确保所有依赖都正确安装,避免出现运行时错误。希望...

    centos+php+coreseek+sphinx+mysql之一coreseek安装篇

    - 配置CoreSeek源代码,指定安装路径和其他依赖参数。 - 使用make和make install来编译安装。 8. **测试安装**: - 运行CoreSeek的测试脚本来验证安装是否成功。 - 使用indexer和search工具来建立索引和进行...

    sphinx 的安装及使用 windws centos coreseek

    在描述中提到了一个博文链接,虽然具体内容没有给出,但可以推测博主“sinykk”分享了他在安装和配置Sphinx以及与Coreseek集成过程中的经验。由于没有实际的博文内容,我将基于一般流程来解释Sphinx的安装和使用。 ...

    可以在CentOS 8 下编译的coreseek 4.1

    这里我们将详细探讨如何在CentOS 8下成功编译并安装Coreseek 4.1。 首先,我们需要确保系统已经准备好所有必要的依赖。CentOS 8 需要的编译工具和库包括GCC编译器、Make、Autoconf、Automake、Libtool、MySQL或...

    Coreseek MySQL 数据源在 CentOS 下的安装

    本文档详细介绍了在 CentOS 系统下安装 Coreseek 并集成 MySQL 数据源的整个过程,包括环境准备、软件下载、解压缩、语言配置检查、安装 mmseg 分词工具、Coreseek 安装、配置测试以及 MySQL 数据源安装等关键步骤。...

    Coreseek XML 数据源在 CentOS 下的安装

    ### 核心知识点:Coreseek XML 数据源在 CentOS 下的安装 #### 一、环境准备与依赖安装 在安装 Coreseek 之前,确保 CentOS 操作系统已经安装了必要的编译环境,例如 `gcc` 和其他相关工具。这些工具是编译安装...

    coreseek-4.1.tar.gz

    在“coreseek-4.1(centos7)”这个子目录下,你将找到适用于CentOS 7操作系统的安装和配置文件。安装CoreSeek通常包括以下几个步骤: 1. 解压下载的tar.gz文件。 2. 配置编译环境,确保系统中已经安装了必要的依赖,...

    Linux下CoreSeek及PHP扩展模块的安装

    6. **配置CoreSeek**: 提供的配置文件应放置于`/usr/local/coreseek/etc/`目录下,具体配置根据需求调整。 7. **安装PHP Sphinx扩展**: - 解压`sphinx-1.2.0.tgz` - 进入`sphinx-1.2.0`目录 - 运行`phpize`...

    sphinx-1.3.0

    在 CentOS 下安装和配置 CoreSeek 与 Sphinx 结合使用,可以帮助你构建出一个高效的中文搜索引擎。 安装步骤通常包括以下几个部分: 1. **安装依赖**:确保系统已安装必要的依赖库,如 MySQL 客户端库、编译工具等...

    sphinx社区全文搜索平台配置手册.pdf

    4. 安装CSFT,这是Sphinx的CoreSeek修改版,针对中文环境进行了优化,支持更好的中文分词。 5. 编译Sphinx过程中可能会遇到的问题,如找不到mysql路径或libiconv库,需要相应地配置环境变量或安装缺失的库。 Sphinx...

    软件性能测试报告.pdf

    - **测试工具**:核心测试工具为Sphinx,还需要C++编译器、make程序和coreseek等依赖工具来支持测试过程。 5. **功能性测试** 对Sphinx的各个功能模块进行了全面检查,如命令界面配置、数据源配置、索引创建、...

Global site tag (gtag.js) - Google Analytics