• Centos下Sphinx的下载与编译安装


    官方下载地址   http://sphinxsearch.com/downloads/release/

    百度云下载地址  https://pan.baidu.com/s/1gfmPbd5  

    wget 
    tar -zxvf sphinx-2.1.1-beta.tar.gz
    cd sphinx-2.1.1-beta
    yum -y install make gcc gcc++ gcc-c++ libtool autoconf automake imake mysql-devel libxml2-devel expat-devel 
    ./configure --prefix=/usr/local/sphinx
    Updates, articles, help forum, and commercial support, consulting, training,
    and development services are available at http://sphinxsearch.com/
    Thank you for choosing Sphinx!
    make            //生成编译文件
    make install    //编译安装

    进入sphinx安装后的目录下的bin目录执行命令创建索引

    ./indexer --all
    ./search document            //默认测试
    Sphinx 2.1.1-beta (rel21-r3701)
    Copyright (c) 2001-2013, Andrew Aksyonoff
    Copyright (c) 2008-2013, Sphinx Technologies Inc (http://sphinxsearch.com)
    using config file '/usr/local/sphinx/etc/sphinx.conf'...
    index 'test1': query 'document ': returned 2 matches of 2 total in 0.000 sec
    displaying matches:
    1. document=1, weight=1557, group_id=1, date_added=Wed Feb  8 06:22:36 2017
    id=1
    group_id=1
    group_id2=5
    date_added=2017-02-08 06:22:36
    title=test one
    content=this is my test document number one. also checking search within phrases.
    2. document=2, weight=1557, group_id=1, date_added=Wed Feb  8 06:22:36 2017
    id=2
    group_id=1
    group_id2=6
    date_added=2017-02-08 06:22:36
    title=test two
    content=this is my test document number two
    words:
    1. 'document': 2 documents, 2 hits
    index 'test1stemmed': query 'document ': returned 2 matches of 2 total in 0.000 sec
    displaying matches:
    1. document=1, weight=1557, group_id=1, date_added=Wed Feb  8 06:22:36 2017
    id=1
    group_id=1
    group_id2=5
    date_added=2017-02-08 06:22:36
    title=test one
    content=this is my test document number one. also checking search within phrases.
    2. document=2, weight=1557, group_id=1, date_added=Wed Feb  8 06:22:36 2017
    id=2
    group_id=1
    group_id2=6
    date_added=2017-02-08 06:22:36
    title=test two
    content=this is my test document number two
    words:
    1. 'document': 2 documents, 2 hits


    要支持中文分词,还需要下载Coreseek,sphinx标签下文章有详细说明

  • 相关阅读:
    memcached注意事项与应用范围、应用条件、限制
    memcached系列之二
    Memcached系列之一
    memcached监控工具
    memcached能获取所有的key吗
    数据库数据处理性能提升技术
    memcached Java Client
    衡量企业应用数据库性能的6大指标
    objelement = event.target || event.srcElement;
    com.alibaba.com.caucho.hessian.io.SerializerFactory getDeserializer
  • 原文地址:https://www.cnblogs.com/wt645631686/p/6868721.html
Copyright © 2020-2023  润新知