Skip to content

Conversation

@ltk
Copy link

@ltk ltk commented Sep 10, 2022

This adds support for the latest version of redis-rb, and should work for redis-rb versions down to 3.0 (might want to confirm this).

Deprecation message:

Pipelining commands on a Redis instance is deprecated and will be removed in Redis 5.0.0.

redis.pipelined do
  redis.get("key")
end

should be replaced by

redis.pipelined do |pipeline|
  pipeline.get("key")
end

This adds support for the latest version of redis-rb, and should support redis-rb
versions down to 3.0.

Deprecation message:
Pipelining commands on a Redis instance is deprecated and will be removed in Redis 5.0.0.

redis.pipelined do
  redis.get("key")
end

should be replaced by

redis.pipelined do |pipeline|
  pipeline.get("key")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant