Token Bucket
Simple to implement, but can allow bursts that overwhelm downstream services.
Sliding Window
More even distribution of requests, better for APIs that need consistent throughput.
Our Implementation
We use Redis MULTI with sorted sets for O(1) rate limit checks.