Memcached
Medium — good to knowBackend
ELI5 — The Vibe Check
Memcached is Redis's simpler sibling — an in-memory cache that's great at one thing: storing key-value pairs really fast. It doesn't have all the fancy data structures Redis has, but it's battle-tested and super simple. Many large sites still use it.
Real Talk
Memcached is a high-performance, distributed in-memory caching system. It only supports simple key-value storage (strings), unlike Redis which supports complex data structures. It's simpler to operate but lacks Redis's persistence, pub/sub, and advanced data types.
When You'll Hear This
"Facebook uses Memcached at massive scale." / "For simple caching, Memcached is lighter than Redis."