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

I want to use the callback new feature,but older code has a lot of use for pipelines,so i had to change a lot of logic, which was too expensive for...

**Describe the bug** I try to concatenate list entries using std::stringstream And was lazy enough to not try writing custom iterator **To Reproduce** ``` std::stringstream s; redis.lrange(key, 0, -1, std::ostream_iterator(s,...

**Is your feature request related to a problem? Please describe.** I love your work, but now I would like to use Redis in an exception-less application cause the back-end does...

Just add bitfield api

If specify the `type of connection_options` is `ConnectionType::CUSTOM`, it will use the `customConnectFn` create a connection to redis server. This allows users to implement their own connection logic. After all,...

Hello, I am using an async cluster object to establish a connection towards one of the master nodes (0). sw::redis::ConnectionOptions opts; sw::redis::AsyncRedisCluster client; opts.host = "db-cluster-0-ip"; opts.port = 6379; client...

**Describe the bug** After new AsyncRedisCluster client, and keep it idle, not send any traffic, I observed the fd keep costing. **To Reproduce** Minimal code to reproduce the bug. client...

after cluster scale up,redis-plus-plus client request timeout increase;i use sw::redis::AsyncRedisCluster to get multi key,key nums no change,i want to kow why? because get key need request more nodes? sw::redis::AsyncRedisCluster request...

**Is your feature request related to a problem? Please describe.** There doesn't seem to be support for LMOVE or BLMOVE. They are new in Redis 6.2. **Describe the solution you'd...