我按照这个Video作为指导,使用PHP启动弹性搜索,但我无法打印或查看结果。我可以打印原始数据,但我无法深入了解。
我使用此代码来请求数据:
// Creating the request.
if(!defined('JSON_PRESERVE_ZERO_FRACTION'))
{
define('JSON_PRESERVE_ZERO_FRACTION', 1024);
}
require_once('vendor/autoload.php'); // autoload which makes it "easier"
// to get values from elasticsearch
$hosts = [
"192.168.1.120:9200"
];
$client = Elasticsearch\ClientBuilder::create()
->setHosts($hosts)
->build();
// Define the search
$query = ([
'index' => '*',
'type' => '*',
'body' => [
'from' => 0,
'size' => 40,
'query' => [
'query_string' => [
'query' => 'a'
]
]
]
]);
$raw = $client->search($query);
print_r($raw);
此print_r($ raw);返回:
Array ( [took] => 2 [timed_out] => [_shards] => Array ( [total] => 30 [successful] => 30 [failed] => 0 ) [hits] => Array ( [total] => 0 [max_score] => [hits] => Array ( ) ) )
我知道通过执行print_r,它应该显示彼此内部的所有数组。所以我不明白我在这里做错了什么?我知道它应该显示,因为我在名为POSTMAN的程序中做了同样的事情,并得到了40个结果。我还尝试了另一个PHP版本。 PHP7,但它返回了相同的东西。
我在这里做错了什么?
答案 0 :(得分:0)
好像我不喜欢把*作为索引和类型。因此,要么删除它们,要么将它们更改为工作索引,类型将解决问题。 对于有此问题的其他人,这是基本的修复:
$query = [
'body' => [
'query' => [
'match' => [
'title' => 'Your search'
]
]
]
];
或
$query = [
'index' => 'your valid index',
'type' => 'your valid type',
'body' => [
'query' => [
'match' => [
'title' => 'Your search'
]
]
]
];