Skip to content

Commit a6df37e

Browse files
authored
Update Queues.md
1 parent afd5a17 commit a6df37e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Queues.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,14 @@ print(heapq.heappop(priority_queue)) # (1, 'task1')
6161

6262
---
6363
#### Answer:
64-
Some common use cases for message queues include: Decoupling systems, load balancing, buffering, and rate limiting.
64+
Common use cases for message queues include:
65+
66+
- Decoupling systems by allowing them to communicate asynchronously
67+
- Buffering and load leveling
68+
- Enabling the communication between microservices in a distributed system
69+
- Allowing for the reliable communication between systems with different performance characteristics
70+
- Facilitating the communication between event-driven systems
71+
- Enabling communication between processes, applications, and devices.
6572
### 🔶 8. What are the benefits of using a message queue?
6673

6774
---

0 commit comments

Comments
 (0)