// Popular Articles
Database-per-PR với Prisma Management API và GitHub Actions: tạm biệt staging DB "chung một phòng"
Mỗi pull request có DB riêng, tự sinh khi mở PR và tự xoá khi đóng. Prisma Management API + GitHub Actions biến pattern này thành vài chục dòng YAML — và cứu team khỏi 8–10 giờ/tuần bị kẹt vì staging database dùng chung.
InsForge: Backend built for AI coding agents, not humans
InsForge là nền tảng backend open-source (Apache 2.0, 7.8k sao GitHub) được thiết kế natively cho AI coding agents. Database, auth, storage, edge functions và model gateway expose qua một semantic layer MCP để Cursor, Claude Code, Codex có thể reason và operate end-to-end. Benchmark: 1.6× nhanh hơn, -30% token, 1.7× accuracy so với Supabase.
Prisma Postgres gets an official Terraform provider — databases as code, finally
Prisma shipped a first-party Terraform provider for Prisma Postgres. Declare projects, databases, and Accelerate connections in .tf files, review with terraform plan, apply. No more Console click-ops.
PlanetScale Traffic Control: chặn truy vấn xấu trước khi nó hạ gục cả database
PlanetScale ra mắt Database Traffic Control cho Postgres — hệ thống budget tài nguyên theo thời gian thực, chặn query xấu trước khi nó chạy thay vì để timeout đốt CPU. Rule lan tới mọi replica trong 1-2 giây.
Some cron jobs should never leave the database: Postgres Background Workers explained
Postgres Background Workers run inside the database server, not next to it. For small, state-driven, data-local jobs, pg_cron beats waking up an app server to run a query and write the result back.