A distributed cache is a system where multiple servers coordinate to store frequently accessed data, ensuring scalability and high availability.
Benefits of Distributed Cache:System Layer | Technology in Use | Usage |
---|---|---|
Web | HTTP cache headers, web accelerators, key-value store, CDNs, etc. | Accelerate retrieval of static web content, and manage sessions |
Application | Local cache and key-value data store | Accelerate application-level computations and data retrieval |
Database | Database cache, buffers, and key-value data store | Reduce data retrieval latency and I/O load from database |
Eviction policies are strategies used by caching systems to decide which data to remove when the cache reaches its storage limit.
Some cache data may become outdated over time, making it invalid and requiring removal. To identify such stale entries, metadata like a time-to-live (TTL) value is stored with each cache item, ensuring outdated data is automatically deleted.
We can use two different approaches to deal with outdated items using TTL:To avoid SPOF and high load on a single cache instance, we introduce sharding. Sharding involves splitting up cache data among multiple cache servers. It can be performed in the following two ways.
insert(key, value)
retrieve(key)
Feature | Memcached | Redis |
---|---|---|
Data Structure | Key-value store (string-based) | Supports multiple data structures (strings, lists, sets, sorted sets, hashes, etc.) |
Persistence | No persistence, in-memory only | Supports persistence (RDB snapshots, AOF logs) |
Eviction Policies | Least Recently Used (LRU), Least Frequently Used (LFU), etc. | LRU, LFU, volatile TTL, etc. |
Memory Management | Memory allocated dynamically | Supports configurable memory limits with eviction options |
Replication | No native replication support | Supports master-slave replication |
Clustering | No native clustering support | Supports clustering for horizontal scalability |
Data Expiration | Supports time-to-live (TTL) for cache expiry | Supports TTL, but with more advanced expiry options |
Use Cases | Simple caching, session storage | Advanced caching, pub/sub, real-time analytics, queues, and more |
Performance | Fast for simple key-value operations | Fast, but with more overhead for advanced data structures |
Community and Ecosystem | Large community, widely adopted | Large community, highly active, many advanced tools and libraries |