2
0
mirror of https://github.com/boostorg/redis.git synced 2026-02-09 23:32:35 +00:00

Support for more commands.

This commit is contained in:
Marcelo Zimbres
2021-02-13 11:02:25 +01:00
parent 1bb8bb1196
commit c9a1c7cd16
8 changed files with 189 additions and 129 deletions

View File

@@ -32,7 +32,7 @@ int main()
resp::response_ignore hello;
read(socket, buffer, hello);
resp::response_basic_number<int> list_size;
resp::response_number list_size;
read(socket, buffer, list_size);
std::cout << list_size.result << std::endl;