Redis Cluster yana bukatawa hayin gida mai launin saukarwa ta hanyar raba bayanan jiya ga nau'in nau'in Redis nodes — rarraba saitin bayanan (da kara) don Redis ya iya sarrafa bayanan da cibiyar aiki da girma gida na mai-server. Yana raba bayanan ta hash slots kuma yana ba da halin dabƙa mai tsarwa.
Raba saitin ta 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.
