当前位置:首页 > PHP教程 > php应用 > 列表

PHP基于ElasticSearch做搜索

发布:smiling 来源: PHP粉丝网  添加日期:2022-06-03 08:14:32 浏览: 评论:0 

ElasticSearch是一个基于Lucene的搜索服务器。它提供了一个分布式多用户能力的全文搜索引擎,基于RESTful web接口。Elasticsearch是用Java开发的,并作为Apache许可条款下的开放源码发布,是当前流行的企业级搜索引擎。设计用于云计算中,能够达到实时搜索,稳定,可靠,快速,安装使用方便。

来自课程《千万级数据并发解决方案(理论+实战)》

PHP基于ElasticSearch做搜索

在做搜索的时候想到了 ElasticSearch ,而且其也支持 PHP,所以就做了一个简单的例子做测试,感觉还不错,做下记录。

环境

php 7.2

elasticsearch 6.2 下载

elasticsearch-php 6 下载

安装 elasticsearch

下载源文件,解压,重新建一个用户,将目录的所属组修改为此用户,因为 elasticsearch 无法用 root 用户启动。

  1. wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.3.tar.gz 
  2.  
  3. tar zxvf elasticsearch-6.2.3.tar.gz 
  4.  
  5. useradd elasticsearch 
  6.  
  7. password elasticsearch 
  8.  
  9. chown elasticsearch:elasticsearch elasticsearch-6.2.3 
  10.  
  11. cd elasticsearch-6.2.3 
  12.  
  13. ./bin/elasticsearch  // 启动 

安装 PHP 扩展

我这里使用的是 composer 安装 elasticsearch-php。在 composer.json 文件中加入 "elasticsearch/elasticsearch": "~6.0",执行 composer update。

  1.  
  2.   "require": { 
  3.  
  4.     // ... 
  5.  
  6.     "elasticsearch/elasticsearch": "~6.0" 
  7.  
  8.     // ... 
  9.  
  10.   } 
  11.  

测试例子

创建表和测试数据

我这里准备了一张文章表来进行测试,首先是建表,其次写入测试数据,准备工作完毕之后,就开始编辑测试用例。

  1. create table articles( 
  2.  
  3.   id int not null primary key auto_increment, 
  4.  
  5.   title varchar(200) not null comment '标题'
  6.  
  7.   content text comment '内容' 
  8.  
  9. ); 
  10.  
  11. insert into articles(title, content) values ('Laravel 测试1''Laravel 测试文章内容1'), 
  12.  
  13. ('Laravel 测试2''Laravel 测试文章内容2'), 
  14.  
  15. ('Laravel 测试3''Laravel 测试文章内容3'); 

从 Mysql 读取数据

  1. try { 
  2.  
  3.   $db = new PDO('mysql:host=127.0.0.1;dbname=test''root''root'); 
  4.  
  5.   $sql = 'select * from articles'
  6.  
  7.   $query = $db->prepare($sql); 
  8.  
  9.   $query->execute(); 
  10.  
  11.   $lists = $query->fetchAll(); 
  12.  
  13.   print_r($lists); 
  14.  
  15. } catch (Exception $e) { 
  16.  
  17.   echo $e->getMessage(); 
  18.  

实例化

  1. require './vendor/autoload.php'
  2.  
  3. use Elasticsearch\ClientBuilder; 
  4.  
  5. $client = ClientBuilder::create()->build(); 

名词解释:索引相当于 MySQL 中的表,文档相当于 MySQL 中的行记录

elasticsearch 的动态性质,在添加第一个文档的时候自动创建了索引和一些默认设置。

将文档加入索引

  1. foreach ($lists as $row) { 
  2.  
  3.   $params = [ 
  4.  
  5.     'body' => [ 
  6.  
  7.       'id' => $row['id'], 
  8.  
  9.       'title' => $row['title'], 
  10.  
  11.       'content' => $row['content'
  12.  
  13.     ], 
  14.  
  15.     'id' => 'article_' . $row['id'], 
  16.  
  17.     'index' => 'articles_index'
  18.  
  19.     'type' => 'articles_type' 
  20.  
  21.   ]; 
  22.  
  23.   $client->index($params); 
  24.  

从索引中获取文档

  1. $params = [ 
  2.  
  3.   'index' => 'articles_index'
  4.  
  5.   'type' => 'articles_type'
  6.  
  7.   'id' => 'articles_1' 
  8.  
  9. ]; 
  10.  
  11. $res = $client->get($params); 
  12.  
  13. print_r($res); 

从索引中删除文档

  1. $params = [ 
  2.  
  3.   'index' => 'articles_index'
  4.  
  5.   'type' => 'articles_type'
  6.  
  7.   'id' => 'articles_1' 
  8.  
  9. ]; 
  10.  
  11. $res = $client->delete($params); 
  12.  
  13. print_r($res); 

删除索引

  1. $params = [ 
  2.  
  3.     'index' => 'articles_index' 
  4.  
  5. ]; 
  6.  
  7. $res = $client->indices()->delete($params); 
  8.  
  9. print_r($res); 

创建索引

  1. $params['index'] = 'articles_index';   
  2.  
  3. $params['body']['settings']['number_of_shards'] = 2;   
  4.  
  5. $params['body']['settings']['number_of_replicas'] = 0;   
  6.  
  7. $client->indices()->create($params); 

搜索

  1. $params = [  
  2.  
  3.   'index' => 'articles_index'
  4.  
  5.   'type' => 'articles_type'
  6.  
  7. ];       
  8.  
  9. $params['body']['query']['match']['content'] = 'Laravel'
  10.  
  11. $res = $client->search($params); 
  12.  
  13. print_r($res);

Tags: ElasticSearch

分享到: