Docs Menu
Docs Home
/ / /
C++ 드라이버
/

문서 삭제

이 페이지의 내용

  • 개요
  • 샘플 데이터
  • 삭제 작업
  • 문서 하나 삭제
  • 여러 문서 삭제
  • 삭제 작업 사용자 지정
  • 반환 값
  • API 문서

이 가이드 에서는 C++ 운전자 를 사용하여 삭제 작업 을 수행하여 MongoDB 컬렉션 에서 문서를 제거 하는 방법을 학습 수 있습니다.

삭제 작업은 MongoDB 컬렉션에서 하나 이상의 문서를 제거합니다. delete_one() 또는 delete_many() 메서드를 사용하여 삭제 작업을 수행할 수 있습니다.

이 가이드 의 예제에서는 Atlas 샘플 데이터 세트sample_restaurants 데이터베이스 에 있는 restaurants 컬렉션 을 사용합니다. C++ 애플리케이션 에서 이 컬렉션 에 액세스 하려면 Atlas cluster 에 연결하는 mongocxx::client 를 인스턴스화하고 dbcollection 변수에 다음 값을 할당합니다.

auto db = client["sample_restaurants"];
auto collection = db["restaurants"];

무료 MongoDB Atlas cluster 를 생성하고 샘플 데이터 세트를 로드하는 방법을 학습 보려면 Atlas 시작하기 가이드 를 참조하세요.

다음 방법을 사용하여 삭제 작업을 수행할 수 있습니다.

  • delete_one()Atlas Search 기준과 일치 하는 첫 번째 문서를 삭제합니다.

  • delete_many()Atlas Search 기준과 일치하는 모든 문서 를 삭제합니다.

각 삭제 메서드에는 제거할 문서를 결정하기 위한 검색 기준을 지정하는 쿼리 필터하다 문서 가 필요합니다. 쿼리 필터에 대한 자세한 내용은 MongoDB Server 매뉴얼의 필터 문서 쿼리 섹션 을 참조하세요.

다음 예시 에서는 delete_one() 메서드를 사용하여 restaurants 컬렉션 에서 name 값이 "Ready Penny Inn" 인 문서 를 제거 합니다.

auto result = collection.delete_one(make_document(kvp("name", "Ready Penny Inn")));

다음 예시 에서는 delete_many() 메서드를 사용하여 restaurants 컬렉션 에서 borough 값이 "Brooklyn" 인 모든 문서를 제거 합니다.

auto result = collection.delete_many(make_document(kvp("borough", "Brooklyn")));

mongocxx::options::delete_options 클래스의 인스턴스 를 선택적 매개변수로 전달하여 delete_one()delete_many() 메서드의 동작을 수정할 수 있습니다. 다음 표에서는 mongocxx::options::delete_options 인스턴스 에서 설정하다 수 있는 필드에 대해 설명합니다.

필드
설명
collation
Specifies the kind of language collation to use when sorting results. For more information, see Collation in the MongoDB Server manual.
write_concern
Sets the write concern for the operation. For more information, see Write Concern in the MongoDB Server manual.
hint
Gets or sets the index to scan for documents. For more information, see the hint statement in the MongoDB Server manual.
let
Specifies a document with a list of values to improve operation readability. Values must be constant or closed expressions that don't reference document fields. For more information, see the let statement in the MongoDB Server manual.
comment
Attaches a comment to the operation. For more information, see the delete command fields guide in the MongoDB Server manual.

다음 예시 에서는 delete_many() 메서드를 호출하여 restaurants 컬렉션 에서 "Mongo" string 이 포함된 name 값이 있는 모든 문서를 삭제 합니다. 또한 mongocxx::options::delete_options 인스턴스 의 comment 필드 를 설정하여 작업에 주석을 추가합니다.

mongocxx::options::delete_options opts{};
opts.comment(bsoncxx::types::bson_value::view_or_value{"Deleting Mongo restaurants"});
auto query_filter = make_document(kvp("name", make_document(kvp("$regex", "Mongo"))));
auto result = collection.delete_many(query_filter.view(), opts);

앞의 예시 에서 delete_many() 대신 delete_one() 메서드를 사용한 경우 운전자 는 "Mongo" 을 포함하는 name 값이 있는 첫 번째 문서 만 삭제 합니다.

delete_one()delete_many() 메서드는 mongocxx::result::delete_result 클래스의 인스턴스 를 반환합니다. 이 클래스에는 다음과 같은 멤버 함수가 포함되어 있습니다.

  • result(), 원시 대량 쓰기 (write) 결과를 반환합니다.

  • deleted_count()삭제된 문서 수를 반환합니다.

쿼리 필터가 어떤 문서와도 일치하지 않으면 드라이버는 어떤 문서도 삭제하지 않으며 deleted_count 은 0 됩니다.

다음 예시 에서는 delete_many() 메서드를 호출하여 cuisine 값이 "Greek" 인 문서를 삭제 합니다. 그런 다음 deleted_count() 멤버 함수를 호출하여 삭제된 문서 수를 출력합니다.

auto result = collection.delete_many(make_document(kvp("cuisine", "Greek")));
std::cout << result->deleted_count() << std::endl;
Deleted documents: 111

이 가이드에서 사용되는 메서드 또는 유형에 대해 자세히 알아보려면 다음 API 설명서를 참조하세요.

돌아가기

문서 업데이트