Retrieve Data
개요
이 가이드 에서는 C 운전자 를 사용하여 읽기 작업을 통해 MongoDB 컬렉션 에서 데이터를 조회 하는 방법을 학습 수 있습니다. mongoc_collection_find_with_opts()
함수를 호출하여 쿼리 필터하다 에 지정된 기준 설정하다 와 일치하는 문서를 조회 할 수 있습니다.
샘플 데이터
이 가이드 의 예제에서는 Atlas 샘플 데이터 세트 의 sample_restaurants
데이터베이스 에 있는 restaurants
컬렉션 을 사용합니다. 무료 MongoDB Atlas cluster 를 생성하고 샘플 데이터 세트를 로드하는 방법을 학습 보려면 Atlas 시작하기 가이드 를 참조하세요.
문서 찾기
함수는 mongoc_collection_find_with_opts()
쿼리 필터하다 를 사용하여 컬렉션 에서 일치하는 모든 문서를 반환합니다. 쿼리 필터하다 는 운전자 가 컬렉션 의 문서를 일치시키는 데 사용하는 기준을 지정하는 문서 입니다.
쿼리 필터에 학습 보려면 쿼리 지정 가이드 를 참조하세요.
문서 찾기 예시
다음 예시 에서는 mongoc_collection_find_with_opts()
함수를 사용하여 cuisine
필드 의 값이 "Spanish"
인 모든 문서를 찾습니다.
bson_t *filter = BCON_NEW ("cuisine", BCON_UTF8 ("Spanish")); mongoc_cursor_t *results = mongoc_collection_find_with_opts (collection, filter, NULL, NULL);
앞의 예시 에서 mongoc_collection_find_with_opts()
연산은 mongoc_cursor_t *
을 반환하며, 이는 mongoc_cursor_next()
함수와 동안 루프를 사용하여 반복할 수 있습니다. 다음 예시 에서는 반복하여 이전 쿼리 에서 반환된 결과를 출력합니다.
const bson_t *doc; bson_error_t error; while (mongoc_cursor_next (results, &doc)) { char *str = bson_as_canonical_extended_json (doc, NULL); printf ("%s\n", str); bson_free (str); } // Ensure we iterated through cursor without error if (mongoc_cursor_error (results, &error)) { fprintf (stderr, "Error getting results: %s\n", error.message); } mongoc_cursor_destroy (results); bson_destroy (filter);
{ "_id" : { "$oid" : "..." }, "name" : "Charle'S Corner Restaurant & Deli", "cuisine" : "Spanish", ... } { "_id" : { "$oid" : "..." }, "name" : "Real Madrid Restaurant", "cuisine" : "Spanish", ... } { "_id" : { "$oid" : "..." }, "name" : "Malaga Restaurant", "cuisine" : "Spanish", ... } { "_id" : { "$oid" : "..." }, "name" : "Cafe Espanol", "cuisine" : "Spanish", ... } { "_id" : { "$oid" : "..." }, "name" : "Cafe Riazor", "cuisine" : "Spanish", ... } ...
참고
모든 문서 찾기
컬렉션 의 모든 문서를 찾으려면 mongoc_collection_find_with_opts()
함수에 빈 필터하다 를 전달합니다.
bson_t *empty_filter = bson_new (); mongoc_cursor_t *results = mongoc_collection_find_with_opts (collection, empty_filter, NULL, NULL); mongoc_cursor_destroy (results); bson_destroy (empty_filter);
검색 동작 수정
구성하려는 옵션이 포함된 bson_t
구조를 전달하여 mongoc_collection_find_with_opts()
함수의 동작을 수정할 수 있습니다. 다음 표에서는 쿼리 수정에 일반적으로 사용되는 옵션에 대해 설명합니다.
옵션 | 설명 |
---|---|
collation | Sets the collation options for the query. |
comment | Specifies a string to attach to the query. This can help you trace and interpret the
operation in the server logs and in profile data. To learn more about query comments,
see $comment in the MongoDB Server
manual. |
hint | Specifies the index to use for the query. |
limit | Limits the number of documents to be returned from the query. |
maxTimeMS | Sets the maximum execution time on the server for this operation. |
skip | Sets the number of documents to skip. |
sort | Defines the sort criteria to apply to the query. |
다음 예시 에서는 limit
및 maxTimeMS
옵션을 사용하여 쿼리 에서 반환되는 문서 수를 10
로 제한하고 작업의 최대 실행 시간을 10000
밀리초로 설정하다 합니다.
bson_t *filter = BCON_NEW ("cuisine", BCON_UTF8 ("Spanish")); bson_t *opts = BCON_NEW ("limit", BCON_INT32 (10), "maxTimeMS", BCON_INT32 (10000)); mongoc_cursor_t *results = mongoc_collection_find_with_opts (collection, filter, opts, NULL); mongoc_cursor_destroy (results); bson_destroy (filter); bson_destroy (opts);
의 동작을 수정하는 옵션의 mongoc_collection_find_with_opts()
전체 목록은 MongoDB Server 매뉴얼의 find 메서드 설명서를 참조하세요.
추가 정보
쿼리 필터에 대해 자세히 알아보려면 쿼리 지정을 참조하세요.
C 운전자 를 사용하여 문서를 조회 하는 실행 가능한 코드 예제를 보려면 MongoDB 에서 데이터 읽기를 참조하세요.
API 문서
이 가이드 에서 설명하는 함수에 학습 보려면 다음 API 문서를 참조하세요.