flâneur — a map of the web's best reading

Redis Explained - by Mahdi Yusuf

architecturenotes.co · 3,884 words · saved by 1 readers

The most accurate description of Redis is that it's a data structure server. This specific nature of Redis has led to much of its popularity and adoption amongst developers. 👋🏾 You are reading Architecture Notes! Crave some byte-sized bites of this? Join me on Twitter. If it's not completely burned down by now. 😬 Rather than iterating over, sorting, and ordering rows, what if the data was in data structures you wanted from the ground up? Early on, it was used much like Memcached, but as Redis improved, it became viable for many other use cases, including publish-subscribe mechanisms, streaming, and queues. Primarily, Redis is an in-memory database used as a cache in front of another "real" database like MySQL or PostgreSQL to help improve application performance. It leverages the speed of memory and alleviates load off the central application database for: Data that changes infrequently and is requested often Data that is less mission-critical and is frequently evolving. Examples o

Redis Explained A deep technical dive into all things Redis. Covering various Redis topologies, data persistence and process forking. Mahdi Yusuf Aug 11, 2022 181 7 26 Share Redis Explained Redis Explained Infographic What is Redis? Redis (“ RE mote DI ctionary S ervice”) is an open-source key-value database server. The most accurate description of Redis is that it's a data structure server. This specific nature of Redis has led to much of its popularity and adoption amongst developers. 👋🏾 You are reading Architecture Notes! Crave some byte-sized bites of this? Join me on Twitter . If it's n

Explore this link on the map →

related reading