Method: Dalli::Client#append
- Defined in:
- lib/dalli/client.rb
#append(key, value) ⇒ Object
Append value to the value already stored on the server for ‘key’. Appending only works for values stored with :raw => true.
151 152 153 |
# File 'lib/dalli/client.rb', line 151 def append(key, value) perform(:append, key, value.to_s) end |