class Redis::Distributed

def unwatch

Forget about all watched keys.
def unwatch
  raise CannotDistribute, :unwatch unless @watch_key
  result = node_for(@watch_key).unwatch
  @watch_key = nil
  result
end