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标签下文章有详细说明

  • 相关阅读:
    ContactManager示例解析
    CubeLiveWallpaper例子解析
    BluetoothChat例子解析
    推荐一个模板引擎 templateengine
    jQuery plugin: Autocomplete
    乐从网站建设、域名、主机-www.lecong.me-www.lecong.mobi
    C#操作注册表
    .NET模板引擎
    [转]模版引擎AderTemplate源代码分析笔记
    windows服务器文件同步,网站同步镜像
  • 原文地址:https://www.cnblogs.com/wt645631686/p/6868721.html
Copyright © 2011-2022 走看看