Reference
boost::redis::request::push_range
Appends a new command to the end of the request.
Synopsis
Declared in <boost/redis/request.hpp>
template<class Range>
void
push_range(
std::string_view cmd,
std::string_view key,
Range const& range,
decltype(std::begin(range))* = nullptr);
Template Parameters
Name |
Description |
Range |
A type that can be passed to |
Parameters
Name |
Description |
cmd |
The command to execute. It should be a redis or sentinel command, like |
key |
The command key. It will be added as the first argument to the command. |
range |
Range containing the command arguments. |
Created with MrDocs