Skip to content

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

@francesco-loreti

Description

@francesco-loreti
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

called from rack-cas/session_store/redis.rb:19:in `write'

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions