Redis Cluster habilita el escalado horizontal mediante sharding de datos en múltiples nodos Redis — distribuyendo el dataset (y la carga) para que Redis pueda manejar datos y throughput más allá de la memoria de un único servidor. Particiona datos vía hash slots y proporciona alta disponibilidad integrada.
Sharding vía 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.
