boost::redis::sentinel_config::addresses
A list of (hostname, port) pairs where the Sentinels are listening.
Synopsis
Declared in <boost/redis/config.hpp>
std::vector<address> addresses = {};
Description
Sentinels in this list will be contacted in order, until a successful connection is made. At this point, the SENTINEL SENTINELS command will be used to retrieve any additional Sentinels monitoring the configured master. Thus, it is not required to keep this list comprehensive ‐ if Sentinels are added later, they will be detected at runtime.
Sentinel will only be used if this value is not empty.
Numeric IP addresses are also allowed as hostnames.
Created with MrDocs