mirror of
https://github.com/boostorg/redis.git
synced 2026-01-19 16:52:08 +00:00
Removes all the logger::on_xxx functions Removes the Logger template parameter to async_run Adds a logger constructor that allows passing a std::function to customize logging behavior Adds constructors to connection and basic_connection taking a logger Deprecates config::logger_prefix Deprecates the async_run overload taking a logger parameter Deprecates the basic_connection::async_run overload not taking any config object Deprecates the basic_connection::next_layer_type typedef Makes the default log level logger::info Makes the logging thread-safe Cleans up deprecated functionality from examples Adds docs on logging Adds an example on how to integrate spdlog into Boost.Redis logging close #213
52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
/* Copyright (c) 2018-2022 Marcelo Zimbres Silva (mzimbres@gmail.com)
|
|
*
|
|
* Distributed under the Boost Software License, Version 1.0. (See
|
|
* accompanying file LICENSE.txt)
|
|
*/
|
|
|
|
#include <boost/redis/connection.hpp>
|
|
|
|
#include <boost/asio/detached.hpp>
|
|
|
|
#include <iostream>
|
|
|
|
namespace asio = boost::asio;
|
|
using boost::redis::connection;
|
|
using boost::redis::request;
|
|
using boost::redis::response;
|
|
using boost::redis::config;
|
|
|
|
auto main(int argc, char* argv[]) -> int
|
|
{
|
|
try {
|
|
config cfg;
|
|
|
|
if (argc == 3) {
|
|
cfg.addr.host = argv[1];
|
|
cfg.addr.port = argv[2];
|
|
}
|
|
|
|
request req;
|
|
req.push("PING", "Hello world");
|
|
|
|
response<std::string> resp;
|
|
|
|
asio::io_context ioc;
|
|
connection conn{ioc};
|
|
|
|
conn.async_run(cfg, asio::detached);
|
|
|
|
conn.async_exec(req, resp, [&](auto ec, auto) {
|
|
if (!ec)
|
|
std::cout << "PING: " << std::get<0>(resp).value() << std::endl;
|
|
conn.cancel();
|
|
});
|
|
|
|
ioc.run();
|
|
|
|
} catch (std::exception const& e) {
|
|
std::cerr << "Error: " << e.what() << std::endl;
|
|
return 1;
|
|
}
|
|
}
|