1. 程式人生 > 程式設計 >PHP ElasticSearch做搜尋例項講解

PHP ElasticSearch做搜尋例項講解

ElasticSearch是一個基於Lucene的搜尋伺服器。它提供了一個分散式多使用者能力的全文搜尋引擎,基於RESTful web介面。Elasticsearch是用Java開發的,並作為Apache許可條款下的開放原始碼釋出,是當前流行的企業級搜尋引擎。設計用於雲端計算中,能夠達到實時搜尋,穩定,可靠,快速,安裝使用方便。

PHP基於ElasticSearch做搜尋

在做搜尋的時候想到了 ElasticSearch ,而且其也支援 PHP,所以就做了一個簡單的例子做測試,感覺還不錯,做下記錄。

環境

php 7.2

elasticsearch 6.2 下載

elasticsearch-php 6 下載

安裝 elasticsearch

下載原始檔,解壓,重新建一個使用者,將目錄的所屬組修改為此使用者,因為 elasticsearch 無法用 root 使用者啟動。

wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.3.tar.gz

tar zxvf elasticsearch-6.2.3.tar.gz

useradd elasticsearch

password elasticsearch

chown elasticsearch:elasticsearch elasticsearch-6.2.3

cd elasticsearch-6.2.3

./bin/elasticsearch // 啟動

安裝 PHP 擴充套件

我這裡使用的是 composer 安裝 elasticsearch-php。在 composer.json 檔案中加入 "elasticsearch/elasticsearch": "~6.0",執行 composer update。

{

 "require": {

  // ...

  "elasticsearch/elasticsearch": "~6.0"

  // ...

 }

}

測試例子

建立表和測試資料

我這裡準備了一張文章表來進行測試,首先是建表,其次寫入測試資料,準備工作完畢之後,就開始編輯測試用例。

create table articles(

 id int not null primary key auto_increment,title varchar(200) not null comment '標題',content text comment '內容'

);

insert into articles(title,content) values ('Laravel 測試1','Laravel 測試文章內容1'),('Laravel 測試2','Laravel 測試文章內容2'),('Laravel 測試3','Laravel 測試文章內容3');

從 Mysql 讀取資料

try {

 $db = new PDO('mysql:host=127.0.0.1;dbname=test','root','root');

 $sql = 'select * from articles';

 $query = $db->prepare($sql);

 $query->execute();

 $lists = $query->fetchAll();

 print_r($lists);

} catch (Exception $e) {

 echo $e->getMessage();

}

例項化

require './vendor/autoload.php';

use Elasticsearch\ClientBuilder;

$client = ClientBuilder::create()->build();

名詞解釋:索引相當於 MySQL 中的表,文件相當於 MySQL 中的行記錄

elasticsearch 的動態性質,在新增第一個文件的時候自動建立了索引和一些預設設定。

將文件加入索引

foreach ($lists as $row) {

 $params = [

  'body' => [

   'id' => $row['id'],'title' => $row['title'],'content' => $row['content']

  ],'id' => 'article_' . $row['id'],'index' => 'articles_index','type' => 'articles_type'

 ];

 $client->index($params);

}

從索引中獲取文件

$params = [

 'index' => 'articles_index','type' => 'articles_type','id' => 'articles_1'

];

$res = $client->get($params);

print_r($res);

從索引中刪除文件

$params = [

 'index' => 'articles_index','id' => 'articles_1'

];

$res = $client->delete($params);

print_r($res);

刪除索引

$params = [

  'index' => 'articles_index'

];

$res = $client->indices()->delete($params);

print_r($res);

建立索引

$params['index'] = 'articles_index'; 

$params['body']['settings']['number_of_shards'] = 2; 

$params['body']['settings']['number_of_replicas'] = 0; 

$client->indices()->create($params);

搜尋

$params = [ 

 'index' => 'articles_index',];   

$params['body']['query']['match']['content'] = 'Laravel';

$res = $client->search($params);

print_r($res);

以上就是PHP基於ElasticSearch做搜尋的詳細內容,希望我們整理的內容能夠幫助到大家。