class Redis

def unwatch

Other tags:
    See: #multi -
    See: #watch -

Returns:
  • (String) - `OK`
def unwatch
  synchronize do |client|
    client.call([:unwatch])
  end
end