fjp_saper - good idea. Gets me to the most current few messages (good enough to be considered equivalent for processing purposes). But does not solve the problem of quickly pro ...
A backlog will occur if the dequeue rate is less than the enqueue rate. This will not be a problem if I can read in LIFO order. The backlog is usually temporary, by design (we know our rat ...
ALL messages MUST be processed. None can be lost. They just lose their value over time but COULD be of use. An application decides how useful a message is after reading the message. So if "expiri ...
The messages contain time sensitive data. ALL messages must arrive at the destination, eventually, but the latest message contains the most current information and the rest are of historical interest ...
I need to be able to read messages off an MQ queue in LIFO order. There is a single application PUTing to the queue but many applications GETing off the queue. MQ supports only FIFO and priority order ...