# File lib/memcache/base.rb, line 45 def append(key, value) existing = get(key) return false if existing.nil? set(key, existing + value) && true end