An open API service indexing awesome lists of open source software.

https://github.com/keuller/node-amqp

Simple Example Node and RabbitMQ
https://github.com/keuller/node-amqp

Last synced: 3 months ago
JSON representation

Simple Example Node and RabbitMQ

Awesome Lists containing this project

README

        

## RabbitMQ

* Channel
* Exchange
* Route
* Queue

### Anti Pattern

```

+----------+ +---------+ +-------+ +---------+ +----------+
| Producer | ==> | Channel | ==> | Queue | ==> | Channel | ==> | Consumer |
+----------+ +---------+ +-------+ +---------+ +----------+

```

### Correct Pattern

```

+----------+ +---------+ +----------+ routes +-------+ +---------+ +----------+
| Producer | ==> | Channel | ==> | Exchange | ========> | Queue | ==> | Channel | ==> | Consumer |
+----------+ +---------+ +----------+ +-------+ +---------+ +----------+

```