Redis nyediyakake high availability liwat replication (replica nyalin data), Redis Sentinel (monitoring failover otomatis), lan Redis Cluster (sharding + replication). Ngerti iki penting kanggo mbukak Redis kanthi andal ing production.
Replication — primary lan replicas
PRIMARY (master) → handles writes; asynchronously replicates data to replicas
REPLICAS (slaves) → copies of the primary's data; can serve READS (read scaling)
Write → Primary → async replication → Replicas (eventually consistent)
✓ Redundancy (replicas have copies) + read scaling (reads offloaded to replicas)
✗ Replication is ASYNC → a small lag; a failover could lose very recent writes
