Back to Supabase

Rate Limiting Edge Functions

apps/docs/content/guides/functions/examples/rate-limiting.mdx

1.26.04917 B
Original Source
<div class="video-container"> <iframe src="https://www.youtube-nocookie.com/embed/o4ooiE-SdUg" frameBorder="1" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen ></iframe> </div>

Redis is an open source (BSD licensed), in-memory data structure store used as a database, cache, message broker, and streaming engine. It is optimized for atomic operations like incrementing a value, for example for a view counter or rate limiting. We can even rate limit based on the user ID from Supabase Auth!

Upstash provides an HTTP/REST based Redis client which is ideal for serverless use-cases and therefore works well with Supabase Edge Functions.

Find the code on GitHub.