class Redis
def append(key, value)
-
(Fixnum)
- length of the string after appending
Parameters:
-
value
(String
) -- value to append -
key
(String
) --
def append(key, value) synchronize do |client| client.call([:append, key, value]) end end