PHP 使用 ElasticSearch 作搜索

lasticSearch是一個基於Lucene的搜索服務器。它提供了一個分佈式多用戶能力的全文搜索引擎,基於RESTful web接口。Elasticsearch是用Java開發的,並做爲Apache許可條款下的開放源碼發佈,是當前流行的企業級搜索引擎。設計用於雲計算中,可以達到實時搜索,穩定,可靠,快速,安裝使用方便。php

在作搜索的時候想到了 ElasticSearch ,並且其也支持 PHP,因此就作了一個簡單的例子作測試,感受還不錯,作下記錄。mysql

環境
php 7.2
elasticsearch 6.2 下載
elasticsearch-php 6 下載web

安裝 elasticsearch
下載源文件,解壓,從新建一個用戶,將目錄的所屬組修改成此用戶,由於 elasticsearch 沒法用 root 用戶啓動。sql

1
2
3
4
5
6
7
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。json

1
2
3
4
5
6
7
{
  "require": {
    // ...
    "elasticsearch/elasticsearch": "~6.0"
    // ...
  }
}
測試例子
建立表和測試數據
我這裏準備了一張文章表來進行測試,首先是建表,其次寫入測試數據,準備工做完畢以後,就開始編輯測試用例。服務器

1
2
3
4
5
6
7
8
9
create table articles(
  id int not null primary key auto_increment,
  title varchar(200) not null comment '標題',
  content text comment '內容'
);composer

insert into articles(title, content) values ('Laravel 測試1', 'Laravel 測試文章內容1'),
('Laravel 測試2', 'Laravel 測試文章內容2'),
('Laravel 測試3', 'Laravel 測試文章內容3');
從 Mysql 讀取數據
1
2
3
4
5
6
7
8
9
10
11
12
try {
  $db = new PDO('mysql:host=127.0.0.1;dbname=test', 'root', 'root');elasticsearch

  $sql = 'select * from articles';分佈式

  $query = $db->prepare($sql);
  $query->execute();
  $lists = $query->fetchAll();
  print_r($lists);
} catch (Exception $e) {
  echo $e->getMessage();
}
實例化
1
2
3
require './vendor/autoload.php';
use Elasticsearch\ClientBuilder;
$client = ClientBuilder::create()->build();
名詞解釋:索引至關於 MySQL 中的表,文檔至關於 MySQL 中的行記錄測試

elasticsearch 的動態性質,在添加第一個文檔的時候自動建立了索引和一些默認設置。

將文檔加入索引
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
}
從索引中獲取文檔
1
2
3
4
5
6
7
$params = [
  'index' => 'articles_index',
  'type' => 'articles_type',
  'id' => 'articles_1'
];
$res = $client->get($params);
print_r($res);
從索引中刪除文檔
1
2
3
4
5
6
7
$params = [
  'index' => 'articles_index',
  'type' => 'articles_type',
  'id' => 'articles_1'
];
$res = $client->delete($params);
print_r($res);
刪除索引
1
2
3
4
5
$params = [
    'index' => 'articles_index'
];
$res = $client->indices()->delete($params);
print_r($res);
建立索引
1
2
3
4
$params['index'] = 'articles_index';  
$params['body']['settings']['number_of_shards'] = 2;  
$params['body']['settings']['number_of_replicas'] = 0;  
$client->indices()->create($params);
搜索
1
2
3
4
5
6
7
8
$params = [ 
  'index' => 'articles_index',
  'type' => 'articles_type',
];      

$params['body']['query']['match']['content'] = 'Laravel'; $res = $client->search($params); print_r($res);

相關文章
相關標籤/搜索