這篇文章主要為大家詳細介紹了PHP redis實現超迷你全文檢索的相關資料,具有一定的參考價值,有興趣的小伙伴們可以參考一下
##情景: 我們平台有很多遊戲, 運營的同事在查詢某一款遊戲的時候, 目前使用的是html的select下拉列表的展現形式, 運營的同事得一個個去找,然後選中,耗時又費眼
效果: 輸入"三國"或"國三", 將自動列出所有包含"三國"的遊戲名字, 輸入不限順序; 例如輸入"殺三國",仍然會將"三國殺"這款遊戲找出來
實現: 我用redis的集合+PHP的array_intersect()和mb系列函數, 實現了一個超迷你的全文檢索功能
原則: (大道不過兩三言,說穿不值一文錢,哈哈)
1、將所有的遊戲名字讀出來,拆分成單個漢字2、 將這些漢字作為redis集合的鍵,寫入redis,每個集合裡的值是所有那些遊戲名字中包含此漢字的遊戲的id#3、當用戶輸入文字的時候透過ajax非同步請求,將使用者輸入傳給PHP4、將輸入的文字拆分成單一漢字, 分別找到這些漢字在redis中的集合值5、取出,求交集,就找到了同時包含這幾個漢字的遊戲的id6、最後到資料庫裡查出來對應的遊戲資訊即可缺點: 刪除資料不方便
PHP寫入redis和檢索的程式碼:#
//自动补全 //不限输入汉字的前后顺序: 输入"国三杀" => 输出 "三国杀" function getAutoComplate() { //$word = $this->input->post('word'); $word = '三国'; if (empty($word)) { exit('0'); } $intWordLength = mb_strlen($word, 'UTF-8'); $this->load->library('iredis'); if (1 == $intWordLength) { $arrGid = $this->iredis->getAutoComplate($word); } else { $arrGid = array(); for ($i=0; $i < $intWordLength; $i++) { $strOne = mb_substr($word, $i, 1, 'UTF-8'); $arrGidTmp = $this->iredis->getAutoComplate($strOne); $arrGid = empty($arrGid) ? $arrGidTmp : array_intersect($arrGid, $arrGidTmp); //求交集,因为传入的参数个数不确定,因此不能直接求交集 } } $arrGame = $this->gamemodel->getGameNameForAutoComplate($arrGid); // var_dump($arrGame);exit; $jsonGame = json_encode($arrGame); exit($jsonGame); } //自动补全, 建立索引 function setAutoComplate() { $arrGame = $this->gamemodel->getAllGameNameForAutoComplate(); $arrIndex = array(); foreach ($arrGame as $gid => $gname) { $intGnameLength = mb_strlen($gname, 'UTF-8'); for ($i=0; $i < $intGnameLength; $i++) { $strOne = mb_substr($gname, $i, 1, 'UTF-8'); $arrIndex[$strOne][] = $gid; } } $this->load->library('iredis'); foreach ($arrIndex as $word => $arrGid) { foreach ($arrGid as $gid) { $this->iredis->setAutoComplate($word, $gid); } } }
##操作redis的方法
//自动补全功能 public function setAutoComplate($key, $value) { $youxikey = 'youxi_'.$key; $this->sAdd($youxikey, $value); } //自动补全功能 public function getAutoComplate($key) { $youxikey = 'youxi_'.$key; return $this->sMembers($youxikey); }
以上就是PHP redis實作超迷你全文檢索程式碼實例的詳情介紹的內容,更多相關內容請關注PHP中文網(www.php .cn)!