windows和Linux下mongocxx编译及使用说明

windows和Linux下mongocxx编译及使用说明

  • 基于mongo-c-driver-1.13.0和mongo-cxx-driver-r3.4.0,地址分别为:mongo-cxx-drivermongo-c-driver
  • windows使用visual studio 2017编译release库,依赖boost1.66
  • Linux使用系统自带的gcc和boost版本库,在ubuntu16.04编译成功

Linux编译安装

  • mongo-c-driver-1.13.0
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local .. 
make
sudo make install
  • mongo-cxx-driver-r3.4.0
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local ..
sudo make
sudo make install

需要注明的是需要sudo make ,目的是自动安装依赖库EP_mnmlstc_core

windows编译安装

win 64位

  • mongo-c-driver-1.13.0
cmake.exe -G "Visual Studio 15 Win64"  "-DCMAKE_INSTALL_PREFIX=D:\mongo\mongocdriver" ..
  • mongo-cxx-driver-r3.4.0
cmake -G "Visual Studio 15 Win64" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=D:\mongo\mongocxx -DCMAKE_PREFIX_PATH=D:\mongo\mongocdriver -DLIBBSON_DIR=D:\mongo\mongocdriver -DLIBMONGOC_DIR=D:\mongo\mongocdriver -DBOOST_ROOT=D:\develop\boost_1_66_0 -DBOOST_LIBRARYDIR=D:\develop\boost_1_66_0\lib64-msvc-14.1  ..

win 32位

cmake.exe -G "Visual Studio 15"  "-DCMAKE_INSTALL_PREFIX=D:\mongo\mongocdriver" ..
  • mongo-cxx-driver-r3.4.0
cmake -G "Visual Studio 15" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=D:\mongo\mongocxx -DCMAKE_PREFIX_PATH=D:\mongo\mongocdriver -DLIBBSON_DIR=D:\mongo\mongocdriver -DLIBMONGOC_DIR=D:\mongo\mongocdriver -DBOOST_ROOT=D:\develop\boost_1_66_0 -DBOOST_LIBRARYDIR=D:\develop\boost_1_66_0\lib64-msvc-14.1  ..

工程引用

由于mongocxx使用了C++17的一些特性,如std::optionalstd::string_view,而windows下visual studio 2017默认没有开启C++17,因此需要手动开启C++17支持。

  • 开启方式

    visual studio 2017

    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-wiidL4ng-1655949804043)(visual开启C++17.png)]

或者在CMake中添加

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /std:c++17")

linux平台CMake添加

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std:c++17")

使用实例

  • mongocxx::client vs mongocxx::pool区别

参考:http://mongocxx.org/mongocxx-v3/connection-pools/

A standalone mongocxx::client uses a single-threaded algorithm to monitor the state of the cluster it’s connected to. When connected to a replica set, the thread “stops the world” every 60 seconds to check the status of the cluster. A mongocxx::pool, on the other hand, uses a separate background thread for each server in the cluster, each of which checks the status of the server it monitors every 10 seconds. Because of the performance advantages of monitoring the cluster in the background rather than “stopping the world”, it’s highly recommended to use a mongocxx::pool rather than a set of standalone clients if your application has access to multiple threads, even if your application only uses one thread.

  • 一个简单的实例
#include <iostream>
#include <bsoncxx/builder/stream/document.hpp>
#include <bsoncxx/json.hpp>
#include <mongocxx/client.hpp>
#include <mongocxx/instance.hpp>

int main(int, char**) {
    auto mongouri = "mongodb://192.168.10.83:27017";
    mongocxx::instance inst{};
    mongocxx::client conn{ mongocxx::uri{mongouri} };
    bsoncxx::builder::stream::document document{};

    auto collection = conn["testdb"]["testcollection"];
    document << "hello" << "world";

    collection.insert_one(document.view());
    auto cursor = collection.find({});

    for (auto&& doc : cursor) {
        std::cout << bsoncxx::to_json(doc) << std::endl;
    }
    return 0;
}
  • 使用连接池
#include <iostream>
#include <bsoncxx/builder/stream/document.hpp>
#include <bsoncxx/json.hpp>
#include <mongocxx/client.hpp>
#include <mongocxx/pool.hpp>
#include <mongocxx/instance.hpp>


int main(int, char**) {

    mongocxx::instance inst{};
    mongocxx::uri mongouri{ "mongodb://192.168.10.83:27017" };
    mongocxx::pool pool{mongouri};
    auto client = pool.acquire();
    auto collection = (*client)["testdb"]["testcollection"];
    bsoncxx::builder::stream::document document{};
    document << "hello" << "world";

    collection.insert_one(document.view());
    auto cursor = collection.find({});

    for (auto&& doc : cursor) {
        std::cout << bsoncxx::to_json(doc) << std::endl;
    }

    return 0;
}

其它实例

MongoDB CXX Driver examples

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

橘色的喵

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值