Introduction
Pub/sub in Redis lets programs send messages instantly, but it does not save messages for later. This means if a program is not listening when a message is sent, it will miss that message.
You want to send real-time chat messages between users.
You need to notify multiple services immediately about an event.
You want to update live dashboards with fresh data.
You have temporary alerts that don't need to be saved.
You want to broadcast messages to many clients at once.