빅데이터와 클라우드 컴퓨팅 기술의 발전으로 검색엔진도 끊임없이 혁신하고 있습니다. Lucene을 기반으로 한 전체 텍스트 검색 엔진인 Elasticsearch가 인기 있는 선택이 되었습니다. 여기에서는 PHP 프로그래밍에서 Elasticsearch를 사용하는 방법을 소개합니다.
먼저 Elasticsearch를 설치하고 설정해야 합니다. Elasticsearch는 공식 홈페이지에서 다운로드 및 설치가 가능하며, 구체적인 설치 방법은 공식 문서를 참고하시기 바랍니다.
PHP 프로그래밍에서 Elasticsearch를 사용하려면 Elasticsearch 클라이언트를 설치해야 합니다. elasticsearch.php, elastica, Ruflin/Elastica 등과 같은 PHP용 Elasticsearch 클라이언트가 많이 있습니다. 여기서는 elastica를 예로 들어보겠습니다. 이는 Elasticsearch를 캡슐화하고 비교적 사용하기 쉬운 Elasticsearch에서 공식적으로 제공하는 PHP 클라이언트 API를 기반으로 합니다.
Composer를 사용하여 Elasticsearch 클라이언트를 설치할 수 있습니다:
composer require ruflin/elastica
그런 다음 코드에서
require 'vendor/autoload.php';
를 사용하여 Elasticsearch 클라이언트를 로드합니다.
Elasticsearch를 사용하기 전에 Elasticsearch 서버에 연결해야 합니다. 연결 프로세스에서는 Elasticsearch 서버의 호스트 이름과 포트 번호를 지정해야 합니다.
$client = new ElasticaClient([ 'host' => 'localhost', 'port' => 9200 ]);
여기서 localhost와 포트 번호 9200을 사용하여 로컬 Elasticsearch 서버에 연결하세요.
Elasticsearch에서는 모든 데이터가 인덱스에 저장됩니다. Elasticsearch를 사용하려면 먼저 인덱스를 생성해야 합니다. 예를 들어 "my_index"라는 인덱스를 생성할 수 있습니다.
$index = $client->getIndex('my_index'); $index->create(array(), true);
여기서 getClient() 메서드를 사용하여 해당 인덱스를 얻은 다음 create() 메서드를 호출하여 인덱스를 생성합니다.
Elasticsearch에서 문서는 MongoDB의 문서와 마찬가지로 가장 작은 데이터 단위입니다. Index 클래스를 사용하여 인덱스에 문서를 추가할 수 있습니다:
$document = array('title' => 'My title', 'content' => 'My content'); $index = $client->getIndex('my_index'); $type = $index->getType('my_type'); $newDocument = new ElasticaDocument(null, $document); $type->addDocument($newDocument);
여기에서는 먼저 문서를 나타내는 연관 배열을 만든 다음 getType() 메서드를 사용하여 인덱스의 유형을 가져온 다음 addDocument() 메서드를 사용합니다. 문서를 추가하려면
Elasticsearch에서 문서 검색은 매우 일반적인 작업입니다. Query 클래스를 사용하여 쿼리 문을 구성할 수 있습니다.
$elasticaQuery = new ElasticaQuery(); $matchQuery = new ElasticaQueryMatch(); $matchQuery->setFieldQuery('title', 'My'); $elasticaQuery->setQuery($matchQuery); $searchResult = $type->search($elasticaQuery);
여기서는 일치 쿼리를 사용하여 검색할 필드와 검색 키워드를 지정합니다. setQuery() 메서드를 사용하여 쿼리 객체를 search() 메서드에 전달하여 검색을 수행할 수 있습니다.
Elasticsearch에서는 문서를 업데이트하여 수정 작업을 수행할 수 있습니다. Document 클래스를 사용하여 문서를 업데이트할 수 있습니다.
$document = array('title' => 'My new title', 'content' => 'My new content'); $newDocument = new ElasticaDocument($document); $type->updateDocument($newDocument);
여기서 먼저 업데이트할 문서 내용을 나타내는 새 문서 개체를 만든 다음 updateDocument() 메서드를 사용하여 문서를 업데이트합니다.
Document 클래스 또는 Type 클래스를 사용하여 문서를 삭제할 수 있습니다.
// 使用Document类删除文档 $document = $type->getDocument(1); $document->delete(); // 使用Type类删除文档 $type->deleteById(1);
여기서 Document 클래스의 delete() 메서드 또는 Type 클래스의 deleteById() 메서드를 사용하여 문서를 삭제할 수 있습니다. 문서.
요약
위는 PHP 프로그래밍에서 Elasticsearch를 사용하는 기본 동작 방법입니다. Elasticsearch에는 많은 고급 애플리케이션이 있지만 이러한 방법은 일반적인 검색 요구 사항을 충족할 수 있습니다. Elasticsearch를 사용하는 PHP 개발자에게 도움이 되기를 바랍니다.
위 내용은 PHP 프로그래밍에서 Elasticsearch를 어떻게 사용하나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!