redis-plus-plus icon indicating copy to clipboard operation
redis-plus-plus copied to clipboard

Redis client written in C++

Results 73 redis-plus-plus issues
Sort by recently updated
recently updated
newest added

Hi @sewenew, This `PipelineImpl::discard()` function has a name that does not really describe what it does: https://github.com/sewenew/redis-plus-plus/blob/66d7c31a04e3d189ac36b362b1dc9d9197e2bdbb/src/sw/redis%2B%2B/pipeline.h#L39-L42 Would it not be a good idea to deprecate and replace it with...

Hi @sewenew, Are you interested to have Docker support for redis-plus-plus? I just added Docker support for redis-plus-plus-modules, and I am in the 'flow', so I thought I could just...

Hello, We want to subscribe to events on several nodes in redis cluster, so we tried to have a hashtag on different nodes and subscribe. We tried to subscribe directly...

https://github.com/sewenew/redis-plus-plus/blob/df522812ba4114f1dd3386b81afc2369c82b717d/src/sw/redis%2B%2B/connection_pool.cpp#L76-L90 When a ConnectionPool is empty, but has not yet reached its maximum size, the `fetch()` method creates a new connection. Unfortunately it currently holds the pool's mutex while this...

I'm trying to connect to SSL Redis server and getting connection error. (I tried to connect to the same server using redis-cli with hostname and a password and it works...

I read about connection API, it support like "tcp://[passwd@]host[:port]" but if passwd contain "@" , it's error?

When using redis-plus-plus to send large messages, I noticed during memory profiling with valgrind massif that a heap allocation occurs when then `redisReply` object is transformed into a `std::string` (i.e....

So far, we always create a `Subscriber` with a new connection. It might be useful to create a `Subscriber` with a connection in connection pool, e.g. create a new connection...