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

A main Redis connection is flexible enough to accept a String URI and parse out the parameters, but the Sentinel configuration section is not, it only accepts a Hash. Please...

Howdy! I was wondering if there were any build in ways to do client rediscover-ability? I could tell from digging through the source code that any of the provided options...

We've been having some issues with a threaded app that is using a connection pool too manage multiple Redis connections with this gem. On start-up, we intermittently get IOError exceptions....

Can anyone help me how to fix this issue? I've tried reinstalling both redis and redis gem, but I'm still getting this segmentation fault error when I'm loading it from...

``` redis_subscribe_client=Redis.new(:host => "127.0.0.1", :port => 6379) redis_subscribe_client.subscribe("md") do |on| on.message do |channel, msg| Thread.new { tick = JSON.parse(msg) if channel.eql?("md") save_tick(tick) end } end end ``` ``` /var/lib/gems/2.1.0/gems/redis-3.2.2/lib/redis/client.rb:244:in `rescue...

I not sure is this exactly a bug in `redis-rb` or `fakeredis`, but starting from v.4.1.1 return value was changed as following: v.4.1.0 ``` p Redis.current.set("aaa", "aaa") # "OK" p...

- Reproducible with redis (3.3.1), on Centos 6/7. - TCP connection. **Issue overview** I found a redis command 'zremrangebyscore' return a wrong count (0) of removed items even thought it...

I'd like to suggest removing the `Boolify` from non-variadic ZADD and SADD invocations (also SREM / ZREM). I understand and agree with the boolean casting for most methods that do...

major

I noticed that the python redis library will raise an exception when you are watching any key. In my opinion, think is quite useful when you are inside loops and...

I don't know exactly how to explain this, but ActionCable uses Redis's pub/sub scheme. I'm having an issue similar to #598 where Redis would timeout after a while and the...