About the difference between queues

the difference between queues like rabbitmq and queen?

Nov.12,2021

We can think of both as two types of queues, message queues and queues.
they are undeniably similar in structure, and they are all made up of linked lists.

message queuing (MQ) is a communication model that can realize one-way communication between producers and consumers. Generally speaking, it refers to the middleware that implements this model, so it can play the role of inter-process communication more. The
queue (Queue) can also play this role, but it can only satisfy intra-process communication.

Menu