I am wondering what would the (performance?) implications be of having a large number of queues in Oban, let’s say 100000.
What I want to achieve is preserving order of jobs per one entity, so let’s assume I have 100000 purchases in a store, I would like to have one queue per one purchase so that jobs associated with each purchase are processed FIFO for that purchase.
Or is there a better way to preserve job processing sequence? I guess it cannot be achieved by unique jobs, because I would be able to schedule more than one at a time?
Thanks in advance,
PG