redis4 min read
Redis with Node.js — Caching and Pub/Sub
Master Redis for caching and real-time messaging. Connection, caching strategies, and pub/sub patterns.
Read →
3 articles
Master Redis for caching and real-time messaging. Connection, caching strategies, and pub/sub patterns.
Master system design problems that test data structure knowledge: LRU/LFU caches, Twitter feed, file systems, and 15+ design problems with full implementations.
Implement an LRU (Least Recently Used) cache with O(1) get and put using a doubly linked list and hashmap. Full 5-language solutions.