Topic

#Redis

4 posts tagged “Redis”.

The Lycoris Team The Lycoris Team · · 4 min read

Redis Persistence: RDB vs AOF, Explained

Redis is in-memory, so RDB snapshots and the AOF log are how it survives a restart — each trades durability against performance differently.

#Redis #Databases #Performance
Chisato Chisato · · 5 min read

Build Your Own Redis in 200 Lines of Python

Build a Redis clone in Python that the real redis-cli can talk to — a TCP server, the RESP protocol, key expiry, and an in-memory store in under 200 lines.

#Databases #Developer Tools #Python
Chisato Chisato · · 5 min read

Redis vs Memcached: Which Cache Should You Use?

Redis and Memcached are both in-memory caches, but they differ on data types, persistence, and threading. How to choose — and when each one wins.

#Redis #Databases #Performance
Chisato Chisato · · 6 min read

What Is Redis? The In-Memory Data Store, Explained

Redis is an in-memory key-value store used as a cache, database, and message broker. How it works, why it's sub-millisecond fast, and when to use it.

#Redis #Databases #Performance

← All topics