Skip to main content
← All videos

Redis Streams, Native — Event Log + Consumer Groups

A durable, replicated event log with consumer groups — native to Zaris, spoken in Redis.

5 min
Coming soon

This walkthrough is in production. Subscribe on YouTube to catch it first.

Watch it, or read it

The full walkthrough below — every screen from the video, with the narration transcribed. Skim it, search it, or read it in your own language.

Redis Streams, Native — Event Log + Consumer Groups — screen 1
Streams are the headline of 2.0.0: an append-only event log with consumer groups, native to Zaris and reachable over the Redis X-commands. Append events, read them back by range, then process them through a consumer group with acknowledgements.
Redis Streams, Native — Event Log + Consumer Groups — screen 2
The stream is a replicated key like any other — sharded onto its owning partition, kept at replication factor two. Lose a node and the log survives.
Redis Streams, Native — Event Log + Consumer Groups — screen 3
From .NET, the typed client.Streams API gives you the same log and groups with real types; over the wire, any Redis client uses XADD, XREADGROUP, and XACK.