class Redis::Distributed

def rpop(key, count = nil)

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