php使用ElasticSearch
在PHP中使用ElasticSearch,你可以使用官方提供的elasticsearch/elasticsearch
客户端库。以下是一个简单的例子,展示了如何在PHP中使用ElasticSearch客户端进行基本的索引、搜索操作。
首先,确保通过Composer安装了ElasticSearch客户端库:
composer require elasticsearch/elasticsearch
然后,你可以使用以下PHP代码与ElasticSearch集群进行交互:
<?php
require 'vendor/autoload.php';
use Elasticsearch\ClientBuilder;
$client = ClientBuilder::create()->setHosts(['localhost:9200'])->build();
// 创建索引
$params = [
'index' => 'my_index',
'body' => [
'settings' => [
'number_of_shards' => 1,
'number_of_replicas' => 0
]
]
];
$response = $client->indices()->create($params);
// 添加文档
$params = [
'index' => 'my_index',
'id' => 'my_id',
'body' => ['name' => 'John Doe', 'age' => 30]
];
$response = $client->index($params);
// 搜索文档
$params = [
'index' => 'my_index',
'body' => [
'query' => [
'match' => [
'name' => 'John'
]
]
]
];
$response = $client->search($params);
print_r($response);
这段代码展示了如何创建一个索引、添加一个文档、并进行搜索。你需要根据你的ElasticSearch服务器地址和端口调整setHosts
方法的参数。记得在实际应用中处理可能发生的错误和异常。
评论已关闭