

“Serverless” Databases
Dec 19, 2022
Discover the ins and outs of serverless databases, exploring why they're becoming essential for modern web development. The hosts dive into various database options like PlanetScale and Supabase, discussing the integration challenges and advantages. They share personal stories about deployment on Deno and the intricacies of SQL queries. Scaling connections during high traffic is tackled, emphasizing connection pooling and edge computing. Tune in to learn the pros and cons of relational versus NoSQL solutions!
AI Snips
Chapters
Transcript
Episode notes
Serverless and Edge Functions
- Serverless functions scale on demand, letting you pay only for actual usage.
- Edge functions distribute globally, running code closer to users.
Wes's Hit Counter Project
- Wes Bos built a hit counter website using Deno and PlanetScale after realizing his website redirect wasn't working.
- The project aimed to explore serverless databases and handle incorrect website traffic.
Database Connections in Serverless
- Traditional databases maintain open connections, posing challenges for serverless functions that scale dynamically.
- Multiple connections from scaled instances strain database resources, leading to potential issues.