You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error: no matching function for call to 'boost_redis_from_bulk'
include/boost/redis/adapter/detail/adapters.hpp:387:7: note: in instantiation of function template specialization 'boost::redis::adapter::detail::vector_impl<std::vector<std::optional<std::basic_string<char>>>>::operator()<std::basic_string_view<char>>' requested here
When using: boost::redis::response<std::optional<std::vector<std::string>>> res;
It will mismatch number of expected responses.
The text was updated successfully, but these errors were encountered:
When want to receive multiple keys and keys may be not present.
If I use
vector<string>
then it will fail if at least 1 key is missing.When using:
boost::redis::response<std::optional<std::vector<std::string>>> res;
It will mismatch number of expected responses.
The text was updated successfully, but these errors were encountered: