PHP 개발에서 문서 저장 및 쿼리를 위해 Google Cloud Firestore를 사용하는 방법
클라우드 컴퓨팅 기술이 지속적으로 발전함에 따라 클라우드 서비스는 현대 애플리케이션 개발에 필수적인 부분이 되었습니다. Google Cloud Firestore는 Google에서 출시한 문서 기반 NoSQL 데이터베이스 서비스로 실시간 데이터베이스, 오프라인 데이터 동기화, Strong Consistency, 자동 확장, 글로벌 배포 등 뛰어난 기능을 제공합니다. 이 글에서는 주로 PHP 프로젝트에서 문서 저장 및 쿼리를 위해 Google Cloud Firestore를 사용하는 방법을 소개합니다.
1단계: Google Cloud Firestore 프로젝트 만들기
먼저 Google Cloud 계정에 로그인하고 Google Cloud Console에서 새 프로젝트를 만들어야 합니다. 프로젝트에서 Firestore 탭을 열고 새 Cloud Firestore 데이터베이스를 생성합니다. 테스트 모드 또는 프로덕션 모드를 선택할 수 있습니다. 테스트 모드에서는 누구나 데이터베이스에 액세스할 수 있지만 프로덕션 모드에서는 액세스를 위한 인증 및 승인이 필요합니다. 이때 생성된 프로젝트 ID를 기록합니다.
2단계: Google Cloud Firestore SDK 설치
PHP 프로젝트에서 Google Cloud Firestore를 사용하려면 Google Cloud Firestore SDK를 설치해야 합니다. 설치하려면 터미널에서 작곡가 명령을 사용하세요.
composer require google/cloud-firestore
3단계: Google Cloud Firestore SDK 구성
Google Cloud Firestore SDK를 구성하려면 코드에 다음 코드를 추가하세요. 다음의 "your_project_id"를 해당 코드로 바꿔야 합니다. 1단계에서 생성된 프로젝트 ID:
<?php use GoogleCloudFirestoreFirestoreClient; $firestore = new FirestoreClient([ 'projectId' => 'your_project_id', ]);
4단계: 문서 저장
다음으로 FirestoreClient 개체를 사용하여 문서를 저장하고 쿼리할 수 있습니다. 다음은 FirestoreClient 객체를 사용하여 PHP 프로젝트에 문서를 저장하기 위한 샘플 코드입니다.
<?php use GoogleCloudFirestoreFirestoreClient; $firestore = new FirestoreClient([ 'projectId' => 'your_project_id', ]); $docRef = $firestore->collection('users')->document('alovelace'); $docRef->set([ 'first' => 'Ada', 'last' => 'Lovelace', 'born' => 1815 ]);
위 코드에서는 먼저 FirestoreClient 객체를 생성하고 프로젝트 ID를 지정합니다. 그런 다음 사용자 컬렉션이 생성되고 "alovelace"라는 문서가 생성되며 해당 속성 값이 설정됩니다. 그 중 "first"는 이름을 나타내고 "last"는 성을 나타내며 "born"은 생년월일을 나타냅니다. 저장이 완료되면 Firestore는 자동으로 고유한 문서 ID를 생성합니다.
5단계: 문서 쿼리
get() 메서드를 사용하여 문서를 찾을 수 있습니다. 다음은 PHP 프로젝트에서 FirestoreClient 객체를 사용하여 문서를 쿼리하는 샘플 코드입니다.
<?php use GoogleCloudFirestoreFirestoreClient; $firestore = new FirestoreClient([ 'projectId' => 'your_project_id', ]); $docRef = $firestore->collection('users')->document('alovelace'); $snapshot = $docRef->snapshot(); if ($snapshot->exists()) { printf('User %s was born in %d', $snapshot['first'], $snapshot['born']); } else { printf('Document %s does not exist!', $docRef->name()); }
위 코드에서는 먼저 "alovelace"라는 문서를 얻은 후 snapshot() 메서드를 통해 문서 스냅샷을 얻습니다. 문서가 존재하면 "사용자"의 이름과 생년월일을 출력하고, 그렇지 않으면 문서가 존재하지 않는다는 프롬프트 메시지를 출력합니다.
6단계: 문서 업데이트 및 삭제
문서는 update() 메서드를 사용하여 업데이트할 수 있습니다. 다음은 PHP 프로젝트에서 FirestoreClient 개체를 사용하여 문서를 업데이트하기 위한 샘플 코드입니다.
<?php use GoogleCloudFirestoreFirestoreClient; $firestore = new FirestoreClient([ 'projectId' => 'your_project_id', ]); $docRef = $firestore->collection('users')->document('alovelace'); $docRef->update([ ['path' => 'first', 'value' => 'Ada King'], ['path' => 'born', 'value' => 1816] ]);
위 코드에서는 먼저 "alovelace"라는 문서를 얻고 update() 메서드를 통해 이름과 생년월일을 업데이트합니다. .
delete() 메소드를 사용하여 문서를 삭제할 수 있습니다. 다음은 PHP 프로젝트에서 FirestoreClient 객체를 사용하여 문서를 삭제하는 샘플 코드입니다.
<?php use GoogleCloudFirestoreFirestoreClient; $firestore = new FirestoreClient([ 'projectId' => 'your_project_id', ]); $docRef = $firestore->collection('users')->document('alovelace'); $docRef->delete();
위 코드에서는 "alovelace"라는 문서에 대해 delete() 메서드를 호출하여 문서를 삭제했습니다.
결론
Google Cloud Firestore는 Google이 출시한 문서 기반 NoSQL 데이터베이스 서비스로 실시간 데이터베이스, 오프라인 데이터 동기화, Strong Consistency, 자동 확장, 글로벌 배포 등 탁월한 기능을 제공합니다. PHP 프로젝트에서 FirestoreClient 객체를 사용하면 문서를 빠르게 저장 및 쿼리하고, 문서를 쉽게 업데이트 및 삭제할 수 있습니다. Google Cloud Firestore의 사용법을 익히면 PHP 개발자의 개발 효율성이 향상될 수 있습니다.
위 내용은 PHP 개발 시 문서 저장 및 쿼리를 위해 Google Cloud Firestore를 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!