Method: Redis::Distributed#rpush

Defined in:
lib/redis/distributed.rb

#rpush(key, value) ⇒ Object

Append one or more values to a list.



449
450
451
# File 'lib/redis/distributed.rb', line 449

def rpush(key, value)
  node_for(key).rpush(key, value)
end