class Redis

def discard

Other tags:
    See: #exec -
    See: #multi -

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