How to use Redis within a C++ program?

2019-01-24 03:21发布

What would be the best way to use a Redis DB within a C++ program?

8条回答
唯我独甜
2楼-- · 2019-01-24 03:44

http://github.com/fictorial/redis-cplusplus-client

This C++ client library is not maintained however as few people actually use C++ to communicate with Redis.

查看更多
时光不老,我们不散
3楼-- · 2019-01-24 03:44

Another C++ client can be found here: https://github.com/luca3m/redis3m

It's a wrapper of hiredis, with nice C++ classes, an high availability connection pooling and a set of patterns already implemented and ready to use.

查看更多
登录 后发表回答