class Redis

def exec

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