← Back to architecture mapperformance
📦
Architecture Pattern POC
Cache-Aside
App manages the cache manually. Check cache first, load DB on miss, then store in cache.
Flow From Map
req -> check Redis HIT -> return cached MISS -> load DB -> cache -> return
Your POC Area
Replace this placeholder with your interactive proof of concept for Cache-Aside. This route is already dedicated to this pattern, so you can add diagrams, controls, code demos, or simulations here.
Example references: Redis, Memcached, lru-cache, node-cache