|
|
|
|
|
by cssanchez
1436 days ago
|
|
I've read of RABBITMQ so much, but yet I don't understand what does it actually do? I know it is a 'message broker' but I don't understand what that means. To me it sounds it's a backend for messaging that's easy to integrate with any user account module? |
|
They go into queues based on attributes of the messages ("routing keys") matched against rules you set up ("bindings").
Other things pick up messages off of those queues and process them.
When they're done, they acknowledge the message and it's removed from the queue. If they crash, the message doesn't get acknowledged and it goes back to the queue.