Exception: Redis::Cluster::CrossSlotPipeliningError
- Defined in:
- lib/redis/errors.rb
Overview
Raised when commands in pipelining include cross slot keys.
Instance Method Summary collapse
-
#initialize(keys) ⇒ CrossSlotPipeliningError
constructor
A new instance of CrossSlotPipeliningError.
Constructor Details
#initialize(keys) ⇒ CrossSlotPipeliningError
Returns a new instance of CrossSlotPipeliningError.
91 92 93 94 |
# File 'lib/redis/errors.rb', line 91 def initialize(keys) super("Cluster client couldn't send pipelining to single node. "\ "The commands include cross slot keys. #{keys}") end |