class Redis::Distributed

def lpushx(key, value)

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