Definition
A data structure (and messaging pattern) where items are processed in the order they arrive — first in, first out (FIFO). Message queues decouple producers from consumers.
Example Usage
"Email notifications go through a queue — the API writes to the queue immediately, and a worker processes them asynchronously."