class Redis::Distributed

def lpush(key, value)

Prepend one or more values to a list.
def lpush(key, value)
  node_for(key).lpush(key, value)
end