class Redis

def rpushx(key, value)

Returns:
  • (Fixnum) - the length of the list after the push operation

Parameters:
  • value (String) --
  • key (String) --
def rpushx(key, value)
  synchronize do |client|
    client.call([:rpushx, key, value])
  end
end