Redis Cluster ngaktifake skalabilitas horizontal kanthi cara nglompokake data ing sasakbeyan node Redis — ngluwari dataset (lan beban) supaya Redis bisa nangani data lan throughput luwih akeh tinimbang memori server tunggal. Nglompokake data liwat hash slots lan menehi saka-awon high availability.
Sharding liwat 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.
