Redis Cluster möjliggör horisontell skalning genom att sharda data över flera Redis-noder — distribuera dataset (och belastning) så att Redis kan hantera data och genomströmning bortom en enskild servers minne. Det partitionerar data via hash slots och tillhandahåller inbyggd hög tillgänglighet.
Sharding via hash slots
Redis Cluster divides the keyspace into 16384 HASH SLOTS.
→ each key maps to a slot: slot = CRC16(key) mod 16384
→ slots are distributed across the cluster's primary nodes
→ each node owns a subset of slots (and thus a subset of the data)
→ This spreads data and load across nodes → scales memory and throughput horizontally.
