WorkflowsJun 13, 2025Comparing Native Postgres, ElasticSearch, and pg_search for Full-Text SearchImplementing text search in Postgres is trivial. You can do it as simply as this But like most simple things in SQL, it’s only simple when your data is simple—when you hit anything approaching scale, the simple things become hard. Full text search is precisely one of these cases....Ben Hagan
WorkflowsJun 13, 2025Handling Protected Health Information Under HIPAA: Best Practices for DevelopersYou’re building a healthtech app. Maybe you’ve decided to take on the insane complexity of electronic health records, or maybe you’re building an app for doctors to communicate with patients, or perhaps you’re creating a platform for managing clinical trials. Whatever your specif...Andrew Tate
WorkflowsJun 09, 2025Managing Postgres Directly in VS CodeMicrosoft recently introduced a Visual Studio Code extension for Postgres database management. Similar in functionality to tools like PgAdmin or DBeaver, this extension embeds Postgres management directly into VSCode and comes fully integrated with GitHub Copilot, allowing it to ...Sam Harrison
WorkflowsJun 06, 2025Neon Launchpad: A Tool For Instant Postgres, No Login NeededIf you’re building a dev tool, template, or platform where users need a database, you’re probably familiar with the pain you can either ask them to bring their own, or build a full provisioning flow yourself. Beyond just provisioning it, your users will need to set up their schem...Atila Fassina
WorkflowsMay 29, 2025The Easiest Way to Migrate Your Postgres Database to NeonMoving a Postgres database from one provider to another it’s tedious, even for simple migrations. You have to export and import dumps, match versions, check extension support… To take that friction out of this equation, we’ve built a tool the Import Data Assistant. Migrate Your D...Carlota Soto
WorkflowsMay 23, 2025Escaping the AWS RDS Cost SpiralIf you look at RDS pricing, everything looks quite affordable (storage, compute, backups) – so how are so many teams spending six figures on it? Usage is part of the story, of course, but those bills are also very inflated. At scale, there’s more going on. Scaling a database does...Carlota Soto
WorkflowsMay 21, 2025Replit App History: Time Travel for Code and Data, Powered by Neon Branches Replit just launched App History, a unified timeline that lets you roll back to earlier versions of your app or even preview them live in the browser. Now, you can try multiple approaches when building with Replit Agent, knowing that every version of your app (code and data) is s...Carlota Soto
WorkflowsMay 15, 2025Create Environments with Masked Production Data Using Neon BranchesEvery engineering team needs realistic, reliable environments to test, debug, and ship software with confidence. The ideal setup sounds simple – clone your production database, run your tests, and move on. But “clone your production database” is easier said than done. Replicating...Carlota Soto
WorkflowsMay 05, 2025Simplify Serverless in AWS: How to Use Neon and Ephemeral EnvironmentsTheBurningMonk.com. " > “Ephemeral environments” refers to the ability to create short lived copies of your system so that Developers can work in their isolated environments and make changes without affecting others. Test data does not pollute shared environments such as dev and ...Yan Cui
WorkflowsMay 05, 2025Rethinking Snapshots at Scale: Neon vs AWS RDSSnapshots are a critical safety net for any team running Postgres in production. If you’re using AWS RDS, you’re probably relying on them mostly as protection against accidental changes. But if your database grows to many terabytes, the experience of actually using those snapshot...Carlota Soto