class Redis::Cluster::CrossSlotPipeliningError
Raised when commands in pipelining include cross slot keys.
Public Class Methods
new(keys)
click to toggle source
Calls superclass method
# File lib/redis/errors.rb, line 82 def initialize(keys) super("Cluster client couldn't send pipelining to single node. "\ "The commands include cross slot keys. #{keys}") end