Introduction to Queue-Based Distribution
Get an introduction of Queue-Based distribution.
We'll cover the following...
We'll cover the following...
As described, for example, in the lesson on Asynchronous HTTP API, it is not always possible or the best approach to synchronously reply to a client request. Sometimes, the best response is to accept a job and promise to execute it later.
Implementing a distributed system using queues is a trade-off, improving throughput with the drawback of increased latency. ...