2
0
mirror of https://github.com/boostorg/redis.git synced 2026-01-19 04:42:09 +00:00

Renames serializer to request.

This commit is contained in:
Marcelo Zimbres
2022-05-18 22:22:17 +02:00
parent 9b8ca4dbc8
commit 215fd7ea73
11 changed files with 31 additions and 32 deletions

View File

@@ -17,7 +17,7 @@ namespace net = boost::asio;
namespace resp3 = aedis::resp3;
using aedis::redis::command;
using aedis::generic::serializer;
using aedis::generic::request;
using aedis::resp3::node;
using aedis::adapter::adapt;
using net::ip::tcp;
@@ -81,7 +81,7 @@ int main()
tcp::socket socket{ioc};
net::connect(socket, res);
serializer<command> req;
request<command> req;
req.push(command::hello, 3);
req.push(command::command);
req.push(command::quit);