ElasticSearch は Lucene に基づいた検索サーバーです。 RESTful Web インターフェイスに基づいた分散マルチユーザー対応の全文検索エンジンを提供します。 Java で開発され、Apache ライセンスの条件に基づいてオープン ソースとしてリリースされた Elasticsearch は、人気のあるエンタープライズ レベルの検索エンジンです。クラウド コンピューティングで使用するように設計されており、リアルタイム検索を実現でき、安定性、信頼性、高速性があり、インストールと使用が簡単です。
#おすすめコース→: 「Elasticsearch 全文検索実践実戦」 (実践動画)
コースより
ElasticSearch に基づく PHP 検索
Doing SearchElasticSearch を思いつき、PHP にも対応しているので、テスト用に簡単なサンプルを作ってみたので、いい感じだったので記録してみました。
環境
php 7.2elasticsearch 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 を使用しています。 "elasticsearch/elasticsearch": "~6.0" を composer.json ファイルに追加し、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',
'type' => 'articles_type',
'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',
'type' => 'articles_type',
];
$params['body']['query']['match']['content'] = 'Laravel';
$res = $client->search($params);
print_r($res);
以上がElasticSearch に基づく PHP 検索の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。