I am trying python-rq and I do not see how to explicitely give priorities to the queues?
Does the priority come from the order they are defined when the worker is launched?
rqworker queueA queueB queueC
queueA is prioritized compare to queueB and queueC ?
QUEUES = ['high', 'default', 'low']
– Bookout