正在加载视频...
视频加载失败
Redis in 60 Second 👇 What is Redis ? Redis = REmote DIctionary Server An in-memory data store used mainly as: - Cache - Session store - Message broker - Real-time data store It’s insanely fast because data lives in RAM, not on disk. 🟢 Why Redis exists Typical... show more
22,326 次观看 • 7 个月前 •via X (Twitter)
21 条评论

Redis is fast until you have cache invalidation problems. Then it's a minefield. The real complexity isn't using Redis, it's deciding what belongs in-memory versus persistent storage. Most teams cache too aggressively and end up with stale data issues that are harder to debug than the original latency problem they tried to solve.

@genwinRahul Good Point Rahul

Well explained Redis has been a gamechanger in terms of writing software. Cache invalidating remains one of the big challenges but the pros outweigh the cons

Thanks. Yes Redis is the game-changer how smartly he is storing data in ram instead of disc so it can provide data back to the user instantly.

what u say if the redis down, the db also down due to cant handle real traffic?

Great explanation. Just revised the whole thing.

@Gooner__14 Thanks brother

Very well explained 🙌

I never knew that why redis is called redis. Now I know. REmote DIctionary Server

Perfect !

Well explained

The in-memory aspect definitely makes it a top choice for reducing latency.

Redis is a fast in memory data store used for caching sessions and real time applications.

Thanks for adding Redis is save a lot of time and execute request quickly

I just love these cat videos 🤣🤣. Great explanation btw

HaHa Thanks 😹

small thing but worth noting - Redis isn't *just* in RAM. AOF persistence can sync to disk every 1s for durability. we use this in prod and only risk losing max 1s of writes on node failure tradeoff: ~10% perf hit vs pure in-memory

Well explained!

Thanks Shefali.

Redis mainly get used in interview 🤣

good
