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.gztar zxvf elasticsearch-6.2.3.tar.gzuseradd elasticsearchpassword elasticsearchchown elasticsearch:elasticsearch elasticsearch-6.2.3cd 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', '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);总结
以上是内存溢出为你收集整理的PHP基于ElasticSearch做搜索全部内容,希望文章能够帮你解决PHP基于ElasticSearch做搜索所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)