mongodb-c

    0熱度

    2回答

    非常簡單,我需要將時間序列數據存儲在文檔中。我已經決定有一份30分鐘的數據文件是合理的。文檔可能如下所示: 但這只是每秒鐘將更新的數百/千個文檔中的一個。 { _id: "APAC.tky001.cpu.2011.12.04:10:00", field1: XX, field2: YY, 1322971800: 22, 1322971801: 23

    0熱度

    2回答

    我試圖做一個查詢必須檢索從我的MongoDB數據庫中的一些數據,按照我的代碼: 72 mongo conn[1]; 73 mongo_cursor cursor[1]; 74 75 //Parameters (connection, IP, port); 76 int status = mongo_connect(conn, "127.0.0.1", 27017); 77 if

    3熱度

    1回答

    我試圖使用sort($ orderby)關鍵字對mongo集合進行查詢。 這裏是沒有$排序依據BSON查詢對象: bson cmd; bson_init(&cmd); bson_append_string(&cmd, "ip", ip.c_str()); bson_append_start_object(&cmd, "timestamp"); bson_append_long(&cmd,

    3熱度

    2回答

    視窗7 64 SP1 - 的MongoDB 2.2.0-RC2 - 升壓1.42 - MS VS 2010終極 - C++驅動 繼「蒙戈在行動」,在shell: for(i=0; i<200000; i++){ db.numbers.save({num: i}); } db.numbers.find()顯示: { "_id": ObjectId("4bfbf132dba1aa7c3

    -1熱度

    1回答

    我已經建立了我的MongoDB這樣的查詢> 86 bson query[1]; 87 bson_init(query); 88 bson_append_start_object(query, "service.virtual_mach ine"); 89 bson_append_oid(query,"_id",result); 90 bson_append_finish_obj

    0熱度

    1回答

    在這個簡單的程序中,我想在主節點崩潰時重新連接到副本集。但它不起作用:如果主節點崩潰,這個程序將立即終止而沒有任何輸出,並返回141.我不知道爲什麼。什麼是重新連接副本集合的正確方法? #include <stdio.h> #include <mongo.h> int insertVal(mongo *conn, int val) { bson op[1]; bson_i

    2熱度

    3回答

    我是一個很大的問題, 我一直在使用ZeroMQ和C,以及使用的MongoDB和C另一個代碼,現在我已經合併這個代碼一些代碼,但是當我嘗試編譯使用該命令:當我安裝了蒙戈-C-驅動 In file included from /usr/local/include/mongo.h:24:0, from write_log.h:13, from get_by_log_cod

    1熱度

    2回答

    我試圖仿效以下的MongoDB的shellcode記錄: db.products.find({ $or : [ { title : /blue/i }, { tags : /blue/i } ] }, {_id:0, title:1}); 這是我已經試過: bson query[1]; mongo_cursor cursor[1]; bson_init(query); { bson