Which NoSQL db to use with C? [closed] Which NoSQL db to use with C? [closed] mongodb mongodb

Which NoSQL db to use with C? [closed]


For crazy performance contraints you can't beat Tokyo Cabinet: http://fallabs.com/tokyocabinet/

There is also a server component called Tokyo Tyrant which looks really cool.


MongoDB works great with C - there is both a C driver and a C++ driver. The database uses the C++ driver itself for functions like replication (MongoDB is written in C++).

http://www.mongodb.org/display/DOCS/Drivers


Does your project want to support some form of offline data? If so you should probably go with CouchDB since the replication model is designed to support offline data changes and sync.