linux中安裝配置sphinx2步驟詳解

來源:互聯網
上載者:User

Sphinx是一個基於SQL的全文檢索索引引擎,可以結合MySQL,PostgreSQL做全文檢索搜尋,它可以提供比資料庫本身更專業的搜尋功能,使得應用程式更容易實現專業化的全文檢索索引。Sphinx特別為一些指令碼語言設計搜尋API介面,如PHP,Python,Perl,Ruby等,同時為MySQL也設計了一個儲存引擎外掛程式

# 安裝sphinx 2.x

 代碼如下 複製代碼

cd /home/addcn
wget http://sphinxsearch.com/files/sphinx-2.1.1-beta.tar.gz
tar xvf sphinx-2.1.1-beta.tar.gz
cd sphinx-2.1.1-beta
make clean
./configure –prefix=/usr/local/sphinx –with-mysql=/usr/local/mysql
make && make install

# 配置
cd /usr/local/sphinx/etc/

# 錯誤
export LD_LIBRARY_PATH=”/usr/local/mysq/lib:/usr/lib:$LD_LIBRARY_PATH”

# 啟動
/usr/local/sphinx/bin/searchd –config /usr/local/sphinx/etc/sphinx.conf

# 停止
/usr/local/sphinx/bin/searchd –stop

# 登入
/usr/local/mysql/bin/mysql -P9306 –protocol TCP

# 更新
/usr/local/sphinx/bin/indexer –config /usr/local/sphinx/etc/sphinx.conf –all –rotate

# 關聯為即時索引
TRUNCATE RTINDEX rt;
ATTACH INDEX disk TO RTINDEX rt;

安裝好之後我們的php mysql全文檢索搜尋可能效能要提高几百倍或幾萬倍哦。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.