MongoDB&C++ 开发(八)建索引

以mongo-cxx-driver/examples中的index.cpp为例

#include <bsoncxx/builder/stream/document.hpp>

#include <bsoncxx/stdx/make_unique.hpp>
#include <mongocxx/client.hpp>
#include <mongocxx/instance.hpp>
#include <mongocxx/stdx.hpp>
#include <mongocxx/uri.hpp>

using bsoncxx::builder::stream::open_document;
using bsoncxx::builder::stream::close_document;
using bsoncxx::builder::stream::close_array;
using bsoncxx::builder::stream::finalize;

int main(int, char**) {
    mongocxx::instance inst{};
    mongocxx::client conn{mongocxx::uri{}};

    auto db = conn["test"];
    try {
        db["restaurants"].drop();
    } catch (const std::exception&) {
        // Collection did not exist.
    }

    // Create a single field index.对单一的字段(键值对)建索引,1表示升序
    {
        // @begin: cpp-single-field-index
        bsoncxx::builder::stream::document index_builder;
        index_builder << "cuisine" << 1;
        db["restaurants"].create_index(index_builder.view(), {});
        // @end: cpp-single-field-index
    }

    // Create a compound index.建立联合索引,1表示升序,-1表示降序
    {
        db["restaurants"].drop();
        // @begin: cpp-create-compound-index
        bsoncxx::builder::stream::document index_builder;
        index_builder << "cuisine" << 1 << "address.zipcode" << -1;
        db["restaurants"].create_index(index_builder.view(), {});
        // @end: cpp-create-compound-index
    }

    // Create a unique index.建立唯一索引,在缺省情况下创建的索引均不是唯一索引,建立唯一索引之后
    //插入website对应键值相同的文档是会报错
    {
        db["restaurants"].drop();
        // @begin: cpp-create-unique-index
        bsoncxx::builder::stream::document index_builder;
        mongocxx::options::index index_options{};
        index_builder << "website" << 1;
        index_options.unique(true);
        db["restaurants"].create_index(index_builder.view(), index_options);
        // @end: cpp-create-unique-index
    }

    // Create an index with storage engine options
    {
        db["restaurants"].drop();
        // @begin: cpp-create-wt-options-index
        bsoncxx::builder::stream::document index_builder;
        mongocxx::options::index index_options{};
        std::unique_ptr<mongocxx::options::index::wiredtiger_storage_options> wt_options =
            mongocxx::stdx::make_unique<mongocxx::options::index::wiredtiger_storage_options>();
        index_builder << "cuisine" << 1;
        wt_options->config_string("block_allocation=first");
        index_options.storage_options(std::move(wt_options));
        db["restaurants"].create_index(index_builder.view(), index_options);
        // @begin: cpp-create-wt-options-index
    }
}
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值