Questions tagged [mongodb-c]

The MongoDB C Driver is the officially supported driver for MongoDB. It is written in C89 compatible C.

MongoDB C Driver is a client library written in C for MongoDB.

For the official MongoDB C documentation, go to http://mongoc.org/libmongoc/current/index.html

47 questions
0
votes
2 answers

Mongo C driver, updating documents as fast as possible

Quite simply, I need to store time series data in a document. I have decided that having a document responsible for a 30 minute period of data is reasonable. The document could look like this: But this is only one of about a few hundred/thousand…
stackmate
  • 908
  • 9
  • 17
0
votes
1 answer

Complex query mongodb c

I've created my mongodb query like this > 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 …
guisantogui
  • 4,017
  • 9
  • 49
  • 93
1 2 3
4