sewenew / redis-plus-plus

Redis client written in C++
Apache License 2.0
1.6k stars 347 forks source link

Use of REDIS_SSL_VERIFY_NONE probably needs to be documented #548

Closed phdpsx closed 6 months ago

phdpsx commented 7 months ago
    opts.tls.enabled = true;
    opts.tls.verify_mode = REDIS_SSL_VERIFY_NONE;
sewenew commented 7 months ago

In fact, it has already been documented in README, check this for detail.

Regards