class Redis

def echo(value)

Echo the given string.
def echo(value)
  synchronize do
    @client.call(:echo, value)
  end
end