Technical architecture and implementation patterns for EdgeURL
EdgeURL_Architecture_Reference.txt in the project root.EdgeURL uses a KV-first architecture for blazing-fast redirects. Every short link lookup hits our ultra-fast cache layer first, not your database.
EdgeURL supports advanced redirect logic to optimize user experience and conversions.
Send traffic to multiple destinations based on weighted probability. Perfect for comparing landing pages or testing offers.
Set automatic expiration dates for time-sensitive campaigns. Expired links can redirect to a fallback or show an error page.
Enable or disable links without deleting them. Useful for pausing campaigns or scheduled activations.
EdgeURL captures comprehensive analytics without slowing down redirects using a batch processing pipeline.
EdgeURL uses a hierarchical multi-tenant structure with Row-Level Security (RLS) for data isolation.
EdgeURL is built to handle millions of redirects per day without breaking a sweat.
app/[slug]/route.ts (redirect handler), app/api/links/route.ts (link CRUD)