开发者

Suggesstions on NOSQL DB with a good stable C++ client

I want to try hooking up my pet project to a NOSQL type DB as eventually it will need to be able to process a large data volume with a very simple data structure...pretty much ideal for NOSQL.

However I am using C++ and have 0 interest in writing a wrapper around a C client. I googled some to try and find examples for using Cassandra with a C++ client and didn't find much.

So my requirements are: Free开发者_运维知识库, Runs on Windows, Good C++ client with examples available that don't assume I am already a NOSQL / Thrift guru.

Any thoughts?


Redis has clients for most major programming languages, including C++. Everything I've been hearing is that Redis is the new hotness in NoSQL.

The thing about Redis (and memcached) is that they ultimately provide telnet-like interfaces. If you can open a socket to localhost and send commands, you can use the NoSQL database. That's more or less what Rediska (Redis PHP Client) does under the hood.

You should be able to whip up a dumb get-set interface in a few hours, and implement the remaining interfaces in a day or so.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜