Skip to content

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

@darkleaf

Description

@darkleaf

#32

https://github.com/bia-technologies/lowkiq/actions/runs/4751008204/jobs/8439707071

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions