What would be the best way to use a Redis DB within a C++ program?
相关问题
- Sorting 3 numbers without branching [closed]
- How to compile C++ code in GDB?
- Why does const allow implicit conversion of refere
- thread_local variables initialization
- What uses more memory in c++? An 2 ints or 2 funct
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.
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.