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

Ref: https://github.com/redis/redis-rb/issues/1070 Ok, let's start the work to see what kind of roadblocks we'll run into. One idea I'm toying with right now, is that rather than delegate everything to...

Closes #1089. I verified, md5 is indeed faster than sha1 by 20%. > We should probably make that configurable though. e.g. accept a callable, or simply call on common interface...

Added support for [Idle time filter](https://redis.io/commands/xpending/#idle-time-filter) on the XPENDING command, which is available since 6.2.0. Reference: https://github.com/redis/redis-rb/issues/978

Hi there - we've got a couple of redis nodes set up as a cache for Rail's RedisCacheStore. I noticed that one of these nodes was receiving much more traffic...

When looking at https://github.com/redis/redis-rb/issues/1089, and running `node_for` many times, I noticed that it is slow and made some investigation. I was able to make it `2x` faster and use `0`...

Uses an offset pointer for the socket buffer instead of mutating it every time we read data. This improves the performance and memory consumption when reading from large sets. This...

Issue: If you use kubernetes redis chart: https://hub.docker.com/r/bitnami/redis/ with sentinels support and Preemptible google cloud nodes, then you will have issue when your nodes recreated, ip address changed, and then...

This will cause the Sentinel client, upon connection, to measure roundtrip latency to each slave and select the slave with the lowest latency. The intent for this is to enable...

Add support for [GEOSEARCH](https://redis.io/commands/geosearch) command, which is available since 6.2.0. Reference: https://github.com/redis/redis-rb/issues/978