ElastiCache AWS की प्रबंधित in-memory caching सेवा है — तेज़ retrieval के लिए बार-बार access किए जाने वाले data को cache करने के लिए Redis या Memcached चलाना। अन्य caching layers (CloudFront, DAX) के साथ मिलकर, caching AWS application performance में सुधार और database load कम करने के लिए एक मुख्य तकनीक है।
ElastiCache — प्रबंधित in-memory caching
ElastiCache runs managed REDIS or MEMCACHED clusters:
→ store frequently-accessed data in memory → sub-millisecond retrieval (very fast)
→ REDUCE LOAD on databases (serve from cache instead of querying the DB)
→ AWS manages it (setup, patching, scaling, failover) — no servers to run
Redis → rich data structures, persistence, replication, HA (Multi-AZ) — the common choice
Memcached → simpler, multi-threaded, pure caching
