Concept Flow - Redis as message broker
Producer sends message
Message stored in Redis list
Consumer polls Redis list
Consumer processes message
Message removed from Redis list
Repeat
This flow shows how a producer sends messages to Redis, which stores them in a list. Consumers then poll Redis to get messages, process them, and remove them from the list.