System Design
Design an API rate limiter
Common algorithms: Token Bucket (allows bursts, most popular), Leaky Bucket (smooths traffic), and Sliding Window Counter (accurate, avoids the fixed window boundary problem).
Common algorithms: Token Bucket (allows bursts, most popular), Leaky Bucket (smooths traffic), and Sliding Window Counter (accurate, avoids the fixed window boundary problem).