Stream Message Persistence
Explore how Streams provide message persistence and ordered delivery, differentiating them from Pub/Sub.
Stream Message Persistence is a free Redis Caching & Messaging (Pub/Sub, Streams) lesson on CoddyKit — lesson 3 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Redis Caching & Messaging (Pub/Sub, Streams) learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.
What is Message Persistence?
In messaging systems, persistence means messages aren't lost, even if the recipient isn't ready to receive them immediately.
Think of it like leaving a note on a fridge instead of shouting it to someone who might not be home. The note stays until it's read.
This is crucial for reliability in many applications.
Streams Retain Your Data
Unlike some other Redis messaging features, Redis Streams are designed to be persistent. Every message (entry) you add to a stream is stored in Redis.
This storage acts like an append-only log. New entries are always added to the end, creating a historical record of events.
Unique Entry IDs for Order
Every entry in a Redis Stream gets a unique Entry ID. This ID is automatically generated by Redis and consists of two parts:
- Timestamp (milliseconds): The time the entry was added.
- Sequence Number: A counter for entries added within the same millisecond.
Example: 1678886400000-0
Adding Messages to a Stream
We use the XADD command to add new entries to a stream. The * tells Redis to auto-generate the Entry ID, ensuring uniqueness and proper ordering.
Each entry also holds field-value pairs, like a mini-hash.
XADD mystream * sensor-id 123 temperature 25.5Reading from a Stream
To read entries from a stream, we use the XREAD command. You specify the stream name and the ID from which to start reading.
Crucially, reading an entry does not remove it from the stream. It stays there for other consumers or for future review.
XREAD COUNT 2 STREAMS mystream 0Streams vs. Pub/Sub: Persistence
This is where Redis Streams significantly differ from Redis Pub/Sub (Publish/Subscribe).
- Streams: Messages are persistent. They are stored and can be read multiple times, even by consumers who connect later.
- Pub/Sub: Messages are ephemeral. They are delivered once to active subscribers and then disappear.
Pub/Sub: Fire and Forget
With Pub/Sub, if no client is subscribed to a channel when a message is published, that message is simply lost. There's no backlog or history.
It's like a live broadcast: if you're not tuned in, you miss it. This is great for real-time notifications where history isn't needed.
Streams Ensure Order
The automatically generated Entry IDs in Redis Streams guarantee strict chronological order. Messages are always stored and retrieved in the exact order they were added.
This is vital for applications where the sequence of events matters, such as logging, auditing, or event sourcing.
When to Use Persistent Streams
Choose Redis Streams when you need:
- Reliable Event Logs: A complete, ordered history of events.
- Message Replay: Ability for new consumers to process past events.
- Auditing & Analytics: Historical data for analysis.
- Decoupled Microservices: Services can process events at their own pace.
Stream Persistence Check
You're building an application that needs to ensure every event is processed, even if a consumer is temporarily offline. Which Redis feature is best suited for this requirement?
Recap: Streams' Core Strengths
In this lesson, we explored the crucial aspects of Redis Streams: message persistence and guaranteed ordered delivery.
- Streams store all entries, forming an immutable log.
- Each entry has a unique, time-based ID ensuring strict order.
- This persistence and ordering are key differentiators from Redis Pub/Sub, making Streams ideal for reliable event processing and historical data.
Frequently asked questions
Is the “Stream Message Persistence” lesson free?
Yes — the full text of “Stream Message Persistence” is free to read here on the web, and the Redis Caching & Messaging (Pub/Sub, Streams) course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Redis Caching & Messaging (Pub/Sub, Streams) course, upgrade to CoddyKit PRO.
What will I learn in “Stream Message Persistence”?
Explore how Streams provide message persistence and ordered delivery, differentiating them from Pub/Sub. You practise Redis Caching & Messaging (Pub/Sub, Streams) with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.
Do I need any experience to start Redis Caching & Messaging (Pub/Sub, Streams)?
No prior experience is required. Redis Caching & Messaging (Pub/Sub, Streams) on CoddyKit is structured for beginners through advanced learners; this is — lesson 3 of 4, so you can start here or from the beginning and move at your own pace.
How long does the “Stream Message Persistence” lesson take?
Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.
Can I write and run code in this Redis Caching & Messaging (Pub/Sub, Streams) lesson?
Yes. Every Redis Caching & Messaging (Pub/Sub, Streams) lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.
All lessons in this course
- What are Redis Streams?
- Stream Data Structures & Commands
- Stream Message Persistence
- Capping and Trimming Streams