The non-templated connection should have `asio::deferred` as the default completion token for all its operations, so the following works: ```cpp redis::connection conn (ctx); // ... co_await conn.async_exec(req, res); ```
Activity
mzimbres commentedon Dec 22, 2024
Hi, I did have default completion tokens but somehow they went missing after a refactoring. Will do it when I have the time. Thanks.