Il-kunċetti ewlenin ta' RabbitMQ jinkludu producers (jibagħtu messaġġi), exchanges (jirrutaw messaġġi), queues (iżommhom messaġġi), bindings (regoli li jikkonnettaw exchanges ma' queues), u consumers (jirċievu messaġġi). Il-fehim ta' kif il-messaġġi jgħaddu minnhom huwa fundamentali.
Il-komponenti ewlenin
PRODUCER → sends messages (to an EXCHANGE, not directly to a queue)
EXCHANGE → receives messages and ROUTES them to queues (based on rules/type)
QUEUE → holds messages until consumed (a buffer; FIFO-ish)
BINDING → a rule linking an exchange to a queue (how/when to route there)
CONSUMER → receives and processes messages from a queue
→ producer → exchange → (binding rules) → queue(s) → consumer
