Concept Flow - Why Redis for in-memory data storage
Client sends data request
Redis checks in-memory store
Data found?
No→Fetch from disk or DB
Return data
Client receives fast response
Redis stores data in memory for very fast access. If data is missing, it fetches from slower storage, then caches it for next time.