Redis Pubsub and Message Queueing

The tests are valid, but the conclusions are partially wrong. Redis does not queue anything on pub/sub channels. On the contrary, it tends to read the item from the publisher socket, and write the item in all the subscriber sockets, ideally in the same iteration of the event loop. Nothing is kept in Redis data … Read more