class Redis::Distributed

def rpushx(key, value)

Append a value to a list, only if the list exists.
def rpushx(key, value)
  node_for(key).rpushx(key, value)
end