Queues Flashcards
1
Q
What the use of Queue?
A
Queues are used to effectively manage requests in a large-scale distributed system. Queues play a vital role in managing distributed communication between different parts of any large-scale distributed system.
2
Q
Examples of Queue?
A
RabbitMQ, ZeroMQ, ActiveMQ, and BeanstalkD.
3
Q
Implementation of Queue
A
Queues are implemented on the asynchronous communication protocol, meaning when a client submits a task to a queue they are no longer required to wait for the results; instead, they need only acknowledgment that the request was properly received.