So my understanding is that a queue can only have a single consumer. How would we handle a 1 to many
So my understanding is that a queue can only have a single consumer. How would we handle a 1 to many situation? Let’s say I fire an event when a user signs up, so I place a “UserSignedUp” event on the queue. Now I’d like to have a bunch of consumers that are decoupled and can react to that event (notifying, saving to database, etc). They all do incredibly important operations, so I need a guaranteed delivery to each consumer. Is this possible in Cloudflare Queues?

