Message middleware RabbitMQ

1, Message queue 1.1 related concepts of MQ 1.1.1 what is MQ MQ(message queue), in its literal sense, is essentially a queue. FIFO is first in, first out, but the contents stored in the queue are messages. It is also a cross process communication mechanism for upstream and downstream message delivery. In the Internet architecture, MQ is ...

Posted by GreenUser on Fri, 26 Nov 2021 01:21:21 -0800

RabbitMQ quick start

Basic concepts of MQ 1.1 MQ overview The full name of MQ is Message Queue, which is a container for saving messages during message transmission. It is mostly used for communication between distributed systems We call from system A to system B directly and remotely. Although this is A simple call, it also has limitations, such as excessiv ...

Posted by rachybaby on Tue, 12 Oct 2021 21:14:16 -0700