Redis உচ்च கிடைப்பான தன்மை வழங்குகிறது பிரতिलिपि மூலம் (தரவுகளின் பிரতिलिपि நகல்கள்), Redis Sentinel (தானியங்கி முறிவு கண்காணிப்பு), மற்றும் Redis Cluster (sharding + பிரতिलिपि) மூலம். இவற்றைப் புரிந்துகொள்ள தொழில்வளவிலும் Redis ஐ நம்பகமாக இயக்குவது முக்கியமாகும்.
பிரतिलिपि — প்রাथमिक மற்றும் பிரতिलिपिகள்
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
