Method: Redis#rpush
- Defined in:
- lib/redis.rb
#rpush(key, value) ⇒ Object
Append a value to a list.
348 349 350 351 352 |
# File 'lib/redis.rb', line 348 def rpush(key, value) synchronize do @client.call [:rpush, key, value] end end |