System Design
Senior
system_design
**Design a URL Shortener**\nYou are tasked with designing a URL shortener service similar to bit.ly. The service should take a long URL as input and generate a short URL that redirects to the long URL when visited. Consider aspects such as scalability, fault tolerance, and performance. Explain how you would structure the database and APIs to handle associated tasks.\n\n**Functionality should include:** \n1. Generating a short URL from a long URL. \n2. Redirecting from a short URL back to the original URL. \n3. Tracking usage statistics for each short URL.
Suggested Answer