# composer.json 파일 생성 후 아래 내용 입력
{
"require": {
"elasticsearch/elasticsearch": "~5.0"
}
}
# composer.json 위치에서 다운로드
curl -s http://getcomposer.org/installer | php
php composer.phar install --no-dev
# 사용하고자 하는 php에 생성된 "vendor" 디렉토리를 옮긴 후 아래와 같이 사용
require 'vendor/autoload.php';
use Elasticsearch\ClientBuilder;
$client = ClientBuilder::create()->build();
출처 : https://www.elastic.co/guide/en/elasticsearch/client/php-api/current/_configuration.html
'IT > Elasticsearch' 카테고리의 다른 글
[Elasticsearch] -H 'Content-Type: application/json' (0) | 2018.03.09 |
---|---|
[Elasticsearch] snapshot (backup) 생성 (0) | 2017.08.01 |
[delete_by_query] 쿼리 & 삭제 (0) | 2017.03.27 |
[Elasticsearch] 성능 극대화 (0) | 2016.12.15 |
[Elasticsearch] 스케일 아웃 (0) | 2016.12.15 |