class Redis

def append(key, value)

Append a value to a key.
def append(key, value)
  synchronize do
    @client.call(:append, key, value)
  end
end