class Redis::Distributed

def lpop(key, count = nil)

Remove and get the first elements in a list.
def lpop(key, count = nil)
  node_for(key).lpop(key, count)
end