Redis and Memcached are the classic key-value stores. Great for caching database queries, storing sessions, and simple pub/sub. Rule: use a real database for the source of truth, a key-value store for hot-path performance.
Key-Value Store
Also known as: KV store