• 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 .. 
    
    • 1
    make
    sudo make install
    
    • 1
    • 2
    • mongo-cxx-driver-r3.4.0
    cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local ..
    
    • 1
    sudo make
    sudo make install
    
    • 1
    • 2

    需要注明的是需要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" ..
    
    • 1
    • 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  ..
    
    • 1

    win 32位

    cmake.exe -G "Visual Studio 15"  "-DCMAKE_INSTALL_PREFIX=D:\mongo\mongocdriver" ..
    
    • 1
    • 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  ..
    
    • 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")
    
    • 1

    linux平台CMake添加

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

    使用实例

    • 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;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 使用连接池
    #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;
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28

    其它实例

    MongoDB CXX Driver examples

  • 相关阅读:
    基于SpringBoot的小区物业管理系统
    李宏毅生成式AI课程笔记(持续更新
    Mac电脑软件开发的优缺点
    如何从无法开机的手机中恢复数据?4个解决方案解决了
    vscode - 环境准备 - 修改缓存路径
    什么是数据标注? 数据标注公司主要做什么?
    3D-2D:PnP
    【详细教程hexo博客搭建】1、从零开始搭建一个能用的博客
    华为政企路由器产品集
    番外 2 : LoadRunner 的安装以及配置
  • 原文地址:https://blog.csdn.net/stallion5632/article/details/125421715