Exception: Redis::Distributed::CannotDistribute

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/redis/distributed.rb

Instance Method Summary collapse

Constructor Details

#initialize(command) ⇒ CannotDistribute

Returns a new instance of CannotDistribute.



8
9
10
# File 'lib/redis/distributed.rb', line 8

def initialize(command)
  @command = command
end

Instance Method Details

#messageObject



12
13
14
15
# File 'lib/redis/distributed.rb', line 12

def message
  "#{@command.to_s.upcase} cannot be used in Redis::Distributed because the keys involved need " \
    "to be on the same server or because we cannot guarantee that the operation will be atomic."
end