Found 1343 bookmarks
Custom sorting
Postgres Connection Strings and psql
Postgres Connection Strings and psql
PostgreSQL connection strings embedded in your application can take two different forms: the key-value notation or the postgresql:// URI scheme. When it comes to using psql though, another form of connection string is introduced, with command line options -h -p -U and environment variable support. In this short article you will learn that you can use either of the three different forms in psql and thus easily copy & paste you application connection string right at the console to test it!
·tapoueh.org·
Postgres Connection Strings and psql
PL/Proxy
PL/Proxy
Function-based sharding for PostgreSQL
·plproxy.github.io·
PL/Proxy
Rotating PostgreSQL Passwords with no downtime
Rotating PostgreSQL Passwords with no downtime
Changing the password for a PostgreSQL database user involves two steps: The change in the database and the change in the application code. This blog post describes how to do this without any downtime or failed authentication tries.
·jannikarndt.de·
Rotating PostgreSQL Passwords with no downtime
pgloader
pgloader
pgloader loads data into PostgreSQL and allows you to implement Continuous Migration from your current database to PostgreSQL.
·pgloader.io·
pgloader
Per-project Postgres
Per-project Postgres
Here’s a little trick I worked out a while back. Along the way I’llintroduce two tools, direnv and Nix, which I’ve found super helpful whendeveloping many di...
·jamey.thesharps.us·
Per-project Postgres
When Postgres blocks: 7 tips for dealing with locks
When Postgres blocks: 7 tips for dealing with locks
In our previous post, we explored locking behavior in Postgres and which types of operations hold locks against other. In this post, we highlight 7 common mistakes developers face dealing with Postgres locks. A list of do’s & don’ts based on our work with developers building apps on top of Postgres and Citus.
·citusdata.com·
When Postgres blocks: 7 tips for dealing with locks