Popularity
1.6
Stable
Activity
0.0
Stable
27
5
7

Description

esay to use no dependence cross platform header only

Programming language: C++
License: Boost Software License 1.0
Tags: Database     Redis     Lite    

aredis alternatives and similar libraries

Based on the "Database" category.
Alternatively, view aredis alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of aredis or a related project?

Add another 'Database' Library

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();
  }
}