Skip to content

Comments

Address the Redis 5.0.0 deprecation warning#64

Open
kofiasare wants to merge 1 commit intolinkyndy:masterfrom
kofiasare:master
Open

Address the Redis 5.0.0 deprecation warning#64
kofiasare wants to merge 1 commit intolinkyndy:masterfrom
kofiasare:master

Conversation

@kofiasare
Copy link

Pipelining commands on a Redis instance are 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

Pipelining commands on a Redis instance are 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