PostgresSep 25, 2025Postgres 18 Is Out: Try it on NeonPostgres 18 just shipped, and as always, it’s available in preview on Neon right away. You can try it right now on Neon’s Free plan, no credit card or setup required. New Features in Postgres 18 Postgres 18 comes with a ton of other exciting updates around performance, flexibilit...Bryan Clark
PostgresSep 24, 2025Introducing Elephantshark, a tool to monitor Postgres network trafficElephantshark helps you monitor, understand and troubleshoot Postgres network traffic that’s Postgres servers, clients, drivers and ORMs talking to Postgres servers, proxies and poolers. Elephantshark sits between the two parties in a Postgres protocol exchange, forwarding messag...George MacKerron
PostgresSep 16, 2025Easier Postgres fine-tuning with online_advisorYou’ve heard this many times before – in order to keep your Postgres database working smoothly, you need to have proper index planning. Too few indexes, and your query performance suffers. Misestimated row counts can also trick the planner into poor choices, and if you’re not usi...Carlota Soto
PostgresAug 21, 2025The 10 Most Popular Postgres Extensions on NeonPostgres is loved not just for what it is, but for what it can become its extension system lets you transform your database into a full text search engine, a geospatial powerhouse, or a vector store for embeddings – all without switching tools. With many thousands of active datab...Ben Hagan
PostgresJul 25, 2025Postgres as Your Platform: Building Event-Driven Systems with Schema ChangesFor years, we’ve built elaborate scaffolding around our databases message queues to broadcast changes, cron jobs to sync schemas, webhooks to notify downstream systems. We needed this scaffolding because Postgres was “just” a database, a place to store rows and run queries. The r...Andrew Tate
PostgresJul 14, 2025How to fix missing table errors in pg_cron“Timing is everything.” Some say that’s a quote from Shakespeare, but imho, the true bards of time are the 52 contributors to the pg_cron extension. The concept being pg_cron is simple run scheduled jobs directly within Postgres using familiar cron syntax. The simplicity belies t...Andrew Tate