class Redis::Client

def call(command, &block)

def call(command, &block)
  reply = process([command]) { read }
  raise reply if reply.is_a?(CommandError)
  if block
    block.call(reply)
  else
    reply
  end
end