class Redis

def unwatch

Forget about all watched keys.
def unwatch
  synchronize do
    @client.call(:unwatch)
  end
end