mirror of
https://github.com/boostorg/redis.git
synced 2026-02-07 22:52:24 +00:00
63 lines
1.4 KiB
C++
63 lines
1.4 KiB
C++
/* Copyright (c) 2019 - 2020 Marcelo Zimbres Silva (mzimbres at gmail dot com)
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#include <aedis/aedis.hpp>
|
|
#include <aedis/utils.hpp>
|
|
|
|
namespace net = aedis::net;
|
|
|
|
namespace net = aedis::net;
|
|
using tcp = net::ip::tcp;
|
|
using tcp_socket = net::use_awaitable_t<>::as_default_on_t<tcp::socket>;
|
|
|
|
namespace this_coro = net::this_coro;
|
|
|
|
using namespace net;
|
|
using namespace aedis;
|
|
|
|
void fill(resp::request<resp::event>& req)
|
|
{
|
|
req.multi();
|
|
req.hello();
|
|
req.rpush("list", {1, 2, 3});
|
|
req.lrange("list");
|
|
req.exec();
|
|
req.quit();
|
|
}
|
|
|
|
net::awaitable<void> example()
|
|
{
|
|
try {
|
|
auto ex = co_await this_coro::executor;
|
|
|
|
tcp::resolver resv(ex);
|
|
tcp_socket socket {ex};
|
|
co_await net::async_connect(socket, resv.resolve("127.0.0.1", "6379"));
|
|
|
|
resp::request req;
|
|
fill(req);
|
|
co_await net::async_write(socket, net::buffer(req.payload));
|
|
|
|
std::string buffer;
|
|
for (;;) {
|
|
resp::response_array<std::string> hello;
|
|
co_await resp::async_read(socket, buffer, hello);
|
|
resp::print(hello.result);
|
|
}
|
|
} catch (std::exception const& e) {
|
|
std::cerr << e.what() << std::endl;
|
|
}
|
|
}
|
|
|
|
int main()
|
|
{
|
|
io_context ioc {1};
|
|
co_spawn(ioc, example(), detached);
|
|
ioc.run();
|
|
}
|
|
|