Redis Cluster inawezesha kuongeza kiwango kwa usawa kwa kutenganisha data katika nodi nyingi za Redis — kusambaza dataset (na mzigo) ili Redis iweze kushughulikia data na wato zaidi ya kumbukumbu ya seva moja. Inagawanya data kupitia hash slots na inatoa uhakika wa juu ambao umejengwa ndani.
Kutenganisha kupitia 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.
