Popularity
1.7
Stable
Activity
0.0
Stable
25
5
6
Description
esay to use no dependence cross platform header only
Programming language: C++
License: Boost Software License 1.0
aredis alternatives and similar libraries
Based on the "Database" category.
Alternatively, view aredis alternatives based on common mentions on social networks and blogs.
-
SQLite
A completely embedded, full-featured relational database in a few 100k that you can include right into your project. [PublicDomain] -
cpp_redis
C++11 Lightweight Redis client: async, thread-safe, no dependency, pipelining, multi-platform. -
SimDB
High performance, shared memory, lock free, cross platform, single file, minimal dependencies, C++11 key-value store [Apache2] -
redis3m
Wrapper of hiredis with clean C++ interface, supporting sentinel and ready to use patterns. [Apache2] -
ObjectBox C/C++ database
Super-fast embedded database for FlatBuffers, structs and classes
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of aredis or a related project?
Popular Comparisons
README
aredis
a clean redis C++ client
redis_conn rc;
if (rc.connect("127.0.0.1"/*host*/, 6379/*port*/, nullptr/*password*/, 1/*db*/))
{
redis_command cmd;
cmd.cmd("set", "test", 123);
rc.command(cmd);
resp_result res;
if (rc.reply(res))
{
std::cout << res.dump();
}
cmd.cmd("get", "test");
rc.command(cmd);
if (rc.reply(res))
{
std::cout << res.dump();
}
}