Docs 菜单
Docs 主页
/ / /
C++ 驱动程序

使用索引优化查询

在此页面上

  • Overview
  • 示例应用程序
  • 单字段索引
  • 复合索引
  • 删除索引
  • 删除所有索引

在此页面上,您可以查看可复制的代码示例,这些示例演示了如何使用C++驾驶员来处理常见的索引类型。

提示

要学习;了解有关使用索引的更多信息,请参阅使用索引指南。 要学习;了解有关此页面上显示的任何索引的更多信息,请参阅每个部分中提供的链接。

要使用本页中的示例,请将代码示例复制到示例应用程序或您自己的应用程序中。 请务必将代码示例中的所有占位符(例如 <connection string> )替换为 MongoDB 部署的相关值。

您可以使用以下示例应用程序来测试本页上的代码示例。 要使用示例应用程序,请执行以下步骤:

  1. 确保您已将C++驾驶员安装在项目可以导入的位置。

  2. 复制以下代码,并将其粘贴到项目中的新.cpp文件中。

  3. 从本页复制代码示例,并将其粘贴到文件的突出显示部分。

1#include <iostream>
2
3#include <bsoncxx/builder/basic/document.hpp>
4#include <bsoncxx/json.hpp>
5#include <mongocxx/client.hpp>
6#include <mongocxx/exception/exception.hpp>
7#include <mongocxx/instance.hpp>
8#include <mongocxx/uri.hpp>
9
10using bsoncxx::builder::basic::kvp;
11using bsoncxx::builder::basic::make_document;
12
13int main() {
14 try {
15 mongocxx::instance instance;
16
17 mongocxx::uri uri("<connection string>");
18 mongocxx::client client(uri);
19
20 auto database = client["<database name>"];
21 auto collection = database["<collection name>"];
22
23 // Start example code here
24
25 // End example code here
26
27 } catch (const mongocxx::exception& e) {
28 std::cout << "An exception occurred: " << e.what() << "\n";
29 return EXIT_FAILURE;
30 }
31
32 return EXIT_SUCCESS;
33}

以下代码展示了如何创建升序单字段索引:

auto index_specification = make_document(kvp("<field name>", 1));
auto result = collection.create_index(index_specification.view());
std::cout << "Index created: " << bsoncxx::to_json(result) << std::endl;
Index created: { "name" : "<field name>_1" }

要学习;了解有关单字段索引的更多信息,请参阅 单字段索引指南。

以下代码演示了如何创建降序复合索引:

auto index_specification = make_document(kvp("<field name 1>", -1), kvp("<field name 2>", -1));
auto result = collection.create_index(index_specification.view());
std::cout << "Index created: " << bsoncxx::to_json(result) << std::endl;
Index created: { "name" : "<field name 1>_-1_<field name 2>_-1" }

要了解有关复合索引的更多信息,请参阅复合索引指南。

以下代码演示了如何删除索引:

collection.indexes().drop_one("<index name>");
std::cout << "Index dropped." << std::endl;
Index dropped.

要学习;了解有关删除索引的更多信息,请参阅 使用索引指南中的删除索引部分。

以下代码演示如何删除集合中的所有索引:

collection.indexes().drop_all();
std::cout << "All indexes removed." << std::endl;
All indexes removed.

要学习;了解有关删除索引的更多信息,请参阅 使用索引指南中的删除索引部分。

后退

GridFS