I have a bursting/batch use case where we need to dequeue more than one item at a time (if available). Been using ConcurrentQueue but need persistence so planning to move to RedisMQ.
Is there a way to actually dequeue directly, the single message single execution model does not scale for us. I’d rather not use the redis client directly if there’s something easier in SS MQ.
Thanks in advance.