Atlas search 인덱스
개요
Atlas Search 기능을 사용하면 MongoDB Atlas에서 호스팅되는 컬렉션에서 전체 텍스트 검색을 수행할 수 있습니다. Atlas Search 인덱스는 검색 동작과 인덱싱할 필드를 지정합니다.
다음 섹션에서는 Atlas Search 인덱스를 생성, 나열, 업데이트 및 삭제 하는 방법을 보여주는 코드 예제를 제공합니다.
검색 인덱스 만들기
createSearchIndexes
명령을 mongoc_collection_command_simple()
함수에 전달하여 하나 이상의 Atlas Search 인덱스를 만들 수 있습니다.
이 함수를 사용하여 Atlas Vector Search 인덱스를 만들 수도 있습니다. Atlas Vector Search 를 사용하면 MongoDB Atlas 에 저장된 벡터 임베딩에 대해 시맨틱 검색을 수행할 수 있습니다. 이 기능 에 학습 보려면 Atlas 설명서에서 Atlas Vector Search 개요를 참조하세요.
다음 코드 예시에서는 Atlas Search 인덱스를 생성하는 방법을 보여줍니다.
bson_t cmd; bson_error_t error; char *cmd_str = bson_strdup_printf ( BSON_STR ({ "createSearchIndexes" : "%s", "indexes" : [ {"definition" : {"mappings" : {"dynamic" : false}}, "name" : "<index name>"} ] }), "<collection name>"); bson_init_from_json (&cmd, cmd_str, -1, &error); bson_free (cmd_str); if (mongoc_collection_command_simple (collection, &cmd, NULL, NULL, &error)) { printf ("Successfully created search index\n"); } else { fprintf (stderr, "Failed to create search index: %s", error.message); } bson_destroy (&cmd);
다음 코드 예시에서는 여러 인덱스를 생성하는 방법을 보여줍니다.
bson_t cmd; bson_error_t error; char *cmd_str = bson_strdup_printf ( BSON_STR ({ "createSearchIndexes" : "%s", "indexes" : [ {"definition" : {"mappings" : {"dynamic" : false}}, "name" : "<first index name>"}, {"definition" : {"mappings" : {"dynamic" : false}}, "name" : "<second index name>"} ] }), "<collection name>"); bson_init_from_json (&cmd, cmd_str, -1, &error); bson_free (cmd_str); if (mongoc_collection_command_simple (collection, &cmd, NULL, NULL, &error)) { printf ("Successfully created search indexes\n"); } else { fprintf (stderr, "Failed to create search indexes: %s", error.message); } bson_destroy (&cmd);
Atlas Search 인덱스를 정의하는 데 사용되는 구문에 대해 자세히 알아보려면 Atlas 설명서의 Atlas Search 인덱스 구문 검토 가이드를 참조하세요.
검색 인덱스 나열
$listSearchIndexes
집계 단계를 mongoc_collection_aggregate()
함수에 전달하여 컬렉션 의 모든 Atlas Search 인덱스를 반환할 수 있습니다.
다음 코드 예시에서는 컬렉션의 검색 인덱스 목록을 출력하는 방법을 보여줍니다.
bson_t pipeline; const bson_t *doc; bson_error_t error; const char *pipeline_str = BSON_STR ({"pipeline" : [ {"$listSearchIndexes" : {}} ]}); bson_init_from_json (&pipeline, pipeline_str, -1, &error); mongoc_cursor_t *cursor = mongoc_collection_aggregate (collection, MONGOC_QUERY_NONE, &pipeline, NULL, NULL); while (mongoc_cursor_next (cursor, &doc)) { char *str = bson_as_canonical_extended_json (doc, NULL); printf ("%s\n", str); bson_free (str); } bson_destroy (&pipeline); mongoc_cursor_destroy (cursor);
검색 인덱스 업데이트
updateSearchIndex
명령을 mongoc_collection_command_simple()
함수에 전달하여 Atlas Search 인덱스 를 업데이트 할 수 있습니다.
다음 코드에서는 검색 업인덱스를데이트하는 방법을 보여줍니다.
bson_t cmd; bson_error_t error; char *cmd_str = bson_strdup_printf ( BSON_STR ({ "updateSearchIndex" : "%s", "definition" : {"mappings" : {"dynamic" : true}}, "name" : "<index name>"}), "<collection name>"); bson_init_from_json (&cmd, cmd_str, -1, &error); bson_free (cmd_str); if (mongoc_collection_command_simple (collection, &cmd, NULL, NULL, &error)) { printf ("Successfully updated search index\n"); } else { fprintf (stderr, "Failed to create search index: %s", error.message); } bson_destroy (&cmd);
검색 인덱스 삭제
dropSearchIndexes
명령을 mongoc_collection_command_simple()
함수에 전달하여 Atlas Search 인덱스 를 삭제 수 있습니다.
다음 코드에서는 컬렉션에서 검색 인덱스를 삭제하는 방법을 보여줍니다.
bson_t cmd; bson_error_t error; char *cmd_str = bson_strdup_printf ( BSON_STR ({ "dropSearchIndexes" : "%s", "index" : "<index name>" }), "<collection name>"); bson_init_from_json (&cmd, cmd_str, -1, &error); if (mongoc_collection_command_simple (collection, &cmd, NULL, NULL, &error)) { printf ("Successfully deleted search index\n"); } else { fprintf (stderr, "Failed to delete search index: %s", error.message); } bson_destroy (&cmd);
추가 정보
MongoDB Atlas Search에 대해 자세히 학습하려면 Atlas Search Indexes 문서를 참조합니다.
API 문서
이 가이드 에서 설명하는 함수에 학습 보려면 다음 API 문서를 참조하세요.