InterviewSolution
Saved Bookmarks
| 1. |
What Is “binding” And “routing Key”? |
|
Answer» A binding in rabbitMQ is a "link" that one SETS up to bind a QUEUE to an exchange. The routing key is a message ATTRIBUTE. This is how the routing algorithm is formed - a message is sent to the queues whose binding key exactly MATCHES the routing key of the message. A binding in rabbitMQ is a "link" that one sets up to bind a queue to an exchange. The routing key is a message attribute. This is how the routing algorithm is formed - a message is sent to the queues whose binding key exactly matches the routing key of the message. |
|