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