Interview Databases & Caching

What is the difference between ElastiCache Redis and Memcached?

Databases & Caching · Intermediate level

Answer

Redis or Valkey supports rich data structures, persistence-related features, replication, clustering, Lua, streams, and pub/sub. Memcached is simpler and best for volatile key-value object caching without complex data structures.

Technical explanation

Managed cache still requires correct key design, TTLs, invalidation, memory sizing, security, and fallback behavior.

Redis/Valkey is better for counters, rate limits, sorted sets, locks, streams, and HA patterns; Memcached is good for simple ephemeral object cache.

The cache should not become a hidden source of truth unless durability, backup, and failover are deliberately designed.

Hands-on example

Cache-aside example:

GET product:v1:123

If hit, return cached value.

If miss, query RDS, then SETEX product:v1:123 300 <json>.

Redis data type examples:

INCR api:tenant:42:requests

HSET user:123 tier premium

ZADD leaderboard 9100 user:123

XADD orders:events * order_id 1001 status created

Preparing for an interview?

Check how well your resume matches the role with our free resume checker— match score, ATS check, and the skills you're missing.

More Databases & Caching interview questions

← All Databases & Caching questions