私は弾性検索&公式のPHPクライアントを使用して名前ごとに私の文書を並べ替えることを試みる、私は進めることができますか?名前で分類しなさいelasticsearch
$params = [
'index' => $this->index ,
'type' => 'videos',
'from' => $this->uri->segment(2),
'size' => 12,
'body' => [
'query' => [
'filtered' => [
'filter' => [
'term' => [ 'name' => $query ] ,
'term' => [ 'tags' => $query ]
]
]
]
]
];
$data['results'] = $this->client->search($params);
それはworking.fatalエラーが発生していません – VipinS