After updating redis-rb in our project we received the following deprecation warning:
Pipelining commands on a Redis instance is deprecated and will be removed in Redis 5.0.0.
redis.multi do
redis.get("key")
end
should be replaced by
redis.multi do |pipeline|
pipeline.get("key")
end
I noticed that the call comes from this library.
I would drop a quick PR for updating this code path if that is all right :)
After updating
redis-rb
in our project we received the following deprecation warning:I noticed that the call comes from this library. I would drop a quick PR for updating this code path if that is all right :)
Cheers 👋 Andi