July 2017
Intermediate to advanced
656 pages
16h 1m
English
In this recipe, we will create a simple asynchronous event recording service. In this context asynchronous means that we will expose the service over a queue rather than a direct point to point connection.
We will be using Redis as a our queue mechanism, specifically we're using a Redis list structure with the LPUSH and BRPOP commands to make a FIFO queue.