class Redis

def pipelined(&block)

def pipelined(&block)
  pipeline = Pipeline.new self
  yield pipeline
  pipeline.execute
end