1. Match Query $params['index'] = '인덱스'; $params['type'] = '타입'; $params['body']['query']['match']['필드명'] = '검색어'; $results = $client->search($params); 결과중 주요값 가져오기 $milliseconds = $results['took']; $maxScore = $results['hits']['max_score']; $score = $results['hits']['hits'][0]['_score']; $doc = $results['hits']['hits'][0]['_source'..