Boost.Redis

    • Introduction
    • Requests and responses
    • Cancellation and timeouts
    • Serializing and parsing into custom types
    • Authentication
    • Logging
    • Sentinel
    • Echo server benchmark
    • Comparison with other Redis clients
    • Examples
    • Reference
    • Acknowledgements
    • Changelog
  • boost::redis::request::hello
arrow_upward

boost::redis::request::hello

hello overloads

Synopses

Declared in <boost/redis/request.hpp>

Appends a HELLO 3 command to the end of the request.

void
hello();

» more...

Appends a HELLO 3 command with AUTH to the end of the request.

void
hello(
    std::string_view username,
    std::string_view password);

» more...

Parameters

Name Description

username

The ACL username.

password

The password for the user.

Created with MrDocs