Reference
boost::redis::ignore_t
Type used to ignore responses.
Synopsis
Declared in <boost/redis/ignore.hpp>
using ignore_t = std::decay_t<decltype(std::ignore)>;
Description
For example:
response<ignore_t, std::string, ignore_t> resp;
This will ignore the first and third responses. RESP3 errors won't be ignore but will cause async_exec to complete with an error.
Created with MrDocs