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
// std::cout << "Response: ";
// for (int i = 0; i < resp->value().size(); ++i) {
// std::cout << resp->value().at(i).value << ", ";
// }
// std::cout << std::endl;
// The following approach was taken in order to be able to
// deal with the responses, as generated by redis in the case
// that there are multiple stream 'records' within a single
// generic_response. The nesting and number of values in
// resp.value() are different, depending on the contents
// of the stream in redis. Uncomment the above commented-out
// code for examples while running the XADD command.
Uncomenting the above code causes a build error - should be resp->size() and resp->at()
The text was updated successfully, but these errors were encountered:
Uncomenting the above code causes a build error - should be
resp->size()
andresp->at()
The text was updated successfully, but these errors were encountered: