zoukankan      html  css  js  c++  java
  • 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标签下文章有详细说明

  • 相关阅读:
    个人案例分析
    软工结对作业
    交点问题
    C语言复习
    【软件工程】提问回顾与个人总结
    【技术博客】Arxiv的新Paper获取和机翻
    【技术博客】动态面包屑导航
    对对碰 -- 软工结对编程博客
    交点计数 -- 软工个人项目作业
    面向对象的程序设计-模块四课程总结
  • 原文地址:https://www.cnblogs.com/wt645631686/p/6868721.html
Copyright © 2011-2022 走看看