首 页 行业热点 新车 试驾评测 养车用车 车型库

php怎么调用elasticsearch

发布网友 发布时间:2022-04-20 14:11

我来回答

2个回答

懂视网 时间:2022-04-29 13:20

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 ElasticsearchClientBuilder;
$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);

热心网友 时间:2022-04-29 10:28

ElasticSearch是一个基于Lucene的稳定的、分布式、RESTFul的搜索引擎。其实所谓的RestFul就是它提供URL供你调用(建立索引和进行检索),不过直接这样使用实在是太凶残了。所以,它也提供了一系列client包,相当于将curl请求封装了,client包支持的语言包括Java、PHP、Python、Ruby和Perl等等。
PHP版的client包叫做elasticsearch-php,可以在Git_hub上下载。地址如下:https://github.com/elasticsearch/elasticsearch

要使用elasticsearch-php有如下三个要求:
1.PHP的版本在5.3.9以上,我用的是PHP5.3.23
2.在项目中使用Composor来管理包,下载地址如下:https://getcomposer.org/
3.在php.ini中开启curl和openssl
要使用elasticsearch,需要JDK的版本大于6,最好选择8吧,因为7有漏洞....
截一张需要的包图:

启动elasticsearch很简单,直接进入解压目录,运行elasticsearch.bat就可以了,看到最后console输出start,就启动成功了。

接下来介绍如何使用elasticsearch-php:

1.新建一个文件夹取名为test,此为项目文件夹
2.在里面放入一个命名为composer.json的文件,文件内容为:

{
"require":{
"elasticsearch/elasticsearch" : "~1.2"
}
}
3.将composer.phar拷贝到test文件夹中,cd 到test文件夹,输入命令:php composer.phar install --no-dev 等待安装成功

这个时候test文件夹下面应该会出现vendor文件夹,里面有elasticsearch、composer、guzzle等文件夹,很多内容
4.这个时候,就可以使用elasticsearch进行建立索引和进行检索了

<?php
require_once('vendor/autoload.php');
function get_conn(){
$host = 'ip';
$dbname = 'dbname';
$user = 'user';
$passwd = 'passwd';

$conn = new PDO("pgsql:dbname=$dbname;host=$host",$user,$passwd);
return $conn;
}

function create_index(){
//Elastic search php client
$client = new Elasticsearch\Client();
$sql = "SELECT * FROM log";
$conn = get_conn();
$stmt = $conn->query($sql);
$rtn = $stmt->fetchAll();

//delete index which already created
$params = array();
$params['index'] = 'log_index';
$client->indices()->delete($params);

//create index on log_date,src_ip,dest_ip
$rtnCount = count($rtn);
for($i=0;$i<$rtnCount;$i++){
$params = array();
$params['body'] = array(
'log_date' => $rtn[$i]['log_date'],
'src_ip' => $rtn[$i]['src_ip'],
'dest_ip' => $rtn[$i]['dest_ip']
);
$params['index'] = 'log_index';
$params['type'] = 'log_type';

//Document will be indexed to log_index/log_type/autogenerate_id
$client->index($params);
}
echo 'create index done!';
}

function search(){
//Elastic search php client
$client = new Elasticsearch\Client();
$params = array();
$params['index'] = 'log_index';
$params['type'] = 'log_type';
$params['body']['query']['match']['src_ip'] = '1.122.33.141';

$rtn = $client->search($params);
var_mp($rtn);
}

set_time_limit(0);
//create_index();
search();
?>

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com