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

A Ruby client library for Redis

Results 92 redis-rb issues
Sort by recently updated
recently updated
newest added

Associated with issue #531. This allows `master_name` in options.

input-required

Im using the latest version of redis-rb which is version 4.6.0 and also of hiredis gem, version 0.6.3. Im trying to connect to a Redis cluster in AWS which has...

Hello, We are sometimes seeing this error while trying to configure the client to connect to the master node in a 3 node sentinel setup: `Redis::ConnectionError (Instance role mismatch. Expected...

A large part of redis-rb maintenance cost comes from having to implement each command Redis add. [A year after Redis 6.2 release, we're still missing a large part of the...

[Redis 6.2](https://redis.io/download) has officially been released, its [release notes](https://raw.githubusercontent.com/redis/redis/6.2/00-RELEASENOTES) contain quite a few new commands, improvements and some changes in behavior. I'm new to this library but I'm willing to...

Hi, we recently upgraded to Redis 6 and started using the built-in TLS. Since the upgrade we see frequent `IO::EINPROGRESSWaitWritable: Operation now in progress - connect(2) would block` versions: ruby:...

I nuked my local repo, re-cloned it, and ran `make`: ```shell make $ wget -q https://github.com/antirez/redis/archive/6.2.tar.gz -O tmp/redis-6.2.tar.gz $ tar xf tmp/redis-6.2.tar.gz -C /Users/alex/src/github.com/amomchilov/redis-rb/tmp/cache $ make cd src && /Library/Developer/CommandLineTools/usr/bin/make...

See this issue randomly on about 1 out of 1 million calls. I'm using the OpenTelemetry gem with Redis which does a lightweight monkey patch but I don't think it's...

Many third-party gems (including [Resque](https://github.com/resque/resque/blob/b739f835105511270200f5037ddb368d676f297e/lib/resque/data_store.rb#L82)) rely on the `connect` method (as in `redis._client.connect`) to manage the active connection. `Redis::Cluster` has a `disconnect` method, but not a `connect`, which breaks the...

Returning in subscription callbacks cause race condition which is Redis still send us messages that are published to the channel, but redis-rb do not receive it as Pub/Sub messages. And...