backend development Podcast Summaries
Explore 7+ podcast episodes about backend development. Read AI-generated summaries, key takeaways, and core concepts — no listening required.
The Missing Piece in Your Backend Skills
JavaScript Mastery
Jun 29, 2026
While Express remains functional, industry demand has shifted toward NestJS due to its enterprise-grade architecture. Learning NestJS isn't about discarding Express skills but layering them with the structural patterns, such as dependency injection and modules, required by professional teams.
Key insight: NestJS doesn't replace your Express knowledge; it acts as a structured framework built on top of it, providing the architectural rigor needed for large-scale production applications.
Your Infrastructure is Bottlenecking Your AI Agent
Eric Tech
Jun 24, 2026
Many developers build brittle webhook handlers that process events synchronously, leading to catastrophic failure under load. By decoupling event ingestion from processing using a Redis queue, you ensure your system remains responsive even during massive traffic spikes.
Key insight: If your waiter also had to cook every meal in the kitchen before taking the next order, the restaurant would fail; your API server works the same way.

Kenapa Koneksi PostgreSQL Itu Mahal?
Programmer Zaman Now
Jun 17, 2026
Koneksi PostgreSQL bersifat mahal karena setiap klien membutuhkan proses OS terpisah. Saat menggunakan connection pooler seperti PgBouncer dalam 'transaction mode', penggunaan 'prepared statements' menyebabkan eksekusi query gagal secara acak karena koneksi yang berganti-ganti. Strategi ini krusial bagi arsitektur serverless yang membutuhkan efisiensi koneksi tinggi.
Key insight: Bug 404 pada data yang baru di-insert seringkali disebabkan oleh 'prepared statement' yang tidak ditemukan di koneksi baru saat PgBouncer melakukan pooling dalam transaction mode.
How To Write Permissions Like A Senior Dev
Web Dev Simplified
May 28, 2026
Developers frequently struggle with fragmented, error-prone authorization code scattered across frontends and backends. This episode outlines a progression from brittle hard-coded checks to the gold standard of Attribute-Based Access Control (ABAC), providing a scalable, centralized model for managing complex user permissions.
Key insight: Attribute-based access control (ABAC) is the only model that scales to handle complex, context-dependent permissions like ownership, object status, or timestamps, which basic role-based systems cannot support.

Kenapa Default Session PHP itu Jelek
Programmer Zaman Now
May 5, 2026
Menyimpan session di file sistem server adalah jebakan bagi aplikasi yang akan di-scale. Saat trafik meningkat dan Anda menggunakan load balancer, user akan terus-menerus ter-logout karena server yang berbeda tidak berbagi data session. Pindahkan pengelolaan session ke Redis atau database eksternal sekarang sebelum aplikasi Anda mencapai skala produksi.
Key insight: Redis bukan sekadar alternatif, tapi solusi performa tinggi karena menghilangkan hambatan disk I/O yang ada pada file sistem tradisional.

MERN Stack Разработка / #2 - Установка и настройка проекта
Гоша Дударь
Apr 8, 2026
This tutorial details the essential initialization and configuration of a Node.js web project using Express. It emphasizes modular code structure, environment variable management via the dotenv library, and effective API testing strategies using professional tools like Thunder Client instead of browser-only requests.
Key insight: Using the Thunder Client extension in Visual Studio Code allows developers to test POST, DELETE, and other non-GET HTTP methods that browsers cannot natively execute, providing a complete environment for backend development.

Why I'm so bullish about Rust in 2026
Dreams of Code
Feb 17, 2026
Rust has matured into a dominant force for desktop, web, and infrastructure development. Its strict compiler acts as a vital safety layer for AI-generated code, while its extreme memory efficiency offers a strategic defense against rising hardware costs. For developers, it now rivals faster-to-ship languages in both API development speed and deployment flexibility.
Key insight: A Rust API using the Axum framework can consume nearly 30 times less memory than an equivalent TypeScript implementation using Bun/Elysia, highlighting the massive efficiency gap as hardware costs continue to climb.