Code RecipeJun 7, 202217 min readURL Shortener (Tiny URL) System Design: A Complete GuideA URL shortner is a service which takes a long URL and converts it into an equivalent short URL containing lesser characters. When the user
Code RecipeJan 8, 20226 min readLRU Cache - Everything You Need To KnowLRU cache stores items in the order in which they were requested. In LRU strategy, when the cache is full, the item that hasn't been used
Code RecipeJan 3, 20229 min readCaching - System Design Building BlocksA cache is a hardware or software component that acts as a temporary storage allowing fast access to data stored in it.