# File lib/redis.rb, line 832
  def append(key, value)
    synchronize do |client|
      client.call([:append, key, value])
    end
  end