September 2014
Intermediate to advanced
316 pages
7h 6m
English
We are going to cover a concept that relates to making our application scalable: message queuing. Message queues allow us to break down our application into smaller pieces and hand out these pieces to be worked on. Message queues also help with scalability. We can parcel out the work to many different nodes, increasing our reliability and the handling of burst traffic. We will need a message queuing server to do this. This is where RabbitMQ (https://www.rabbitmq.com) comes in. So far, everything has been running on Node.js, and now we are adding another server application. We will cover the following topics in this chapter: