class Redis

def discard

Discard all commands issued after MULTI.
def discard
  synchronize do
    @client.call(:discard)
  end
end