coreseek / sphinx的幾個問題

來源:互聯網
上載者:User
關鍵字 sphinx coreseek php linux
有這麼幾個問題始終弄不清楚,網上搜尋很多資訊,沒有找到相關答案
1、php操作coreseek為什麼除了安裝sphinx擴充之外,還要安裝libsphinxclient?如果說sphinx擴充依賴於libsphinxclient,依賴它什嗎?
2、擴充+libsphinxclient安裝成功之後$sphinx->Query返回false,即無結果,不管是英文還是中文
而把擴充關掉,用sphinxapi.php則可以正確返回結果
如果用php操作sphinx而不是coreseek,也可以正確返回結果
3、如果用sphinxapi.php操作coreseek,中文情況下,words的下標是亂碼

$keyword="baixue";$sphinx=new SphinxClient();$sphinx->setServer("localhost",9312);$sphinx->setMatchMode(SPH_MATCH_ANY);$result=$sphinx->Query("$keyword","*");echo "
";var_dump($result);echo "
";

環境:CentOS7、php5.4、coreseek3.2.14

回複內容:

有這麼幾個問題始終弄不清楚,網上搜尋很多資訊,沒有找到相關答案
1、php操作coreseek為什麼除了安裝sphinx擴充之外,還要安裝libsphinxclient?如果說sphinx擴充依賴於libsphinxclient,依賴它什嗎?
2、擴充+libsphinxclient安裝成功之後$sphinx->Query返回false,即無結果,不管是英文還是中文
而把擴充關掉,用sphinxapi.php則可以正確返回結果
如果用php操作sphinx而不是coreseek,也可以正確返回結果
3、如果用sphinxapi.php操作coreseek,中文情況下,words的下標是亂碼

$keyword="baixue";$sphinx=new SphinxClient();$sphinx->setServer("localhost",9312);$sphinx->setMatchMode(SPH_MATCH_ANY);$result=$sphinx->Query("$keyword","*");echo "
";var_dump($result);echo "
";

環境:CentOS7、php5.4、coreseek3.2.14

第一個問題:
就是依賴,也甭管為什麼依賴,如果沒有libsphinxclient,./configure的時候提示Cannot find libsphinxclient headers,根本無法make

第二個問題:
用$sphinx->getLastError()返回報錯資訊
client version is higher than daemon version (client is v.1.29, daemon is v.1.22),即用戶端版本高於守護版(用戶端v.1.29,守護v.1.22)
sphinx擴充版本高了,換個低版本$sphinx->Query即可返回資訊

第三個問題:
charset_type = sbcs
改為
charset_type = zh_cn.utf-8
charset_dictpath = /usr/local/mmseg3/etc/(mmseg安裝路徑/etc/)
我把zh_cn.utf-8寫成了zh.cn_utf-8,所以一直找不到問題

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.