Skip to main content
← All videos

Native Data Structures in .NET — Hashes, Lists, Sets, Sorted Sets

Redis-style collections, native to Zaris and replicated like every other key.

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.

Native Data Structures in .NET — Hashes, Lists, Sets, Sorted Sets — screen 1
Zaris 2.0.0 stores collections, not just values. Hashes model a record, lists are ordered queues, sets hold unique members, and a sorted set is a live leaderboard — all with the Redis commands you know.
Native Data Structures in .NET — Hashes, Lists, Sets, Sorted Sets — screen 2
Every one of these is a single logical value that lives on its owning partition and is replicated at replication factor two — exactly as durable and available as a plain key.
Native Data Structures in .NET — Hashes, Lists, Sets, Sorted Sets — screen 3
From .NET you reach them through the typed client — client.Hashes, client.Lists, client.SortedSets; from any other language, the same collections answer over the Redis protocol.