2
0
mirror of https://github.com/boostorg/redis.git synced 2026-02-09 23:32:35 +00:00
- Fixes handling of transactions.
- Fixes Reader-writer.
This commit is contained in:
Marcelo Zimbres
2021-01-17 15:46:00 +01:00
parent b6033137ed
commit e76213b7fe
11 changed files with 742 additions and 524 deletions

View File

@@ -6,6 +6,7 @@
*/
#include <aedis/aedis.hpp>
#include <aedis/utils.hpp>
namespace net = aedis::net;
using namespace aedis;
@@ -28,7 +29,7 @@ int main()
std::string buffer;
resp::response_flat_map<std::string> hello;
resp::read(socket, buffer, hello);
print(hello.result);
resp::print(hello.result);
resp::response_simple_string set;
resp::read(socket, buffer, set);