Skip to content

Tag: postgres

All the articles with the tag "postgres".

pg_stat_statements: What Most Tutorials Miss

pg_stat_statements: What Most Tutorials Miss

· Updated:

pg_stat_statements is far more than a slow query log. Here is what most tutorials skip entirely: tail latency percentiles, cache hit ratios, and WAL bloat.

Postgres EXPLAIN ANALYZE Without Crying

Postgres EXPLAIN ANALYZE Without Crying

Learn to read Postgres EXPLAIN ANALYZE output without losing your mind. Costs, row estimates, buffer hit stats, and the index and query fixes that matter most.

PostgreSQL on ZFS: Tuning, Snapshots, Pitfalls

PostgreSQL on ZFS: Tuning, Snapshots, Pitfalls

· Updated:

Run PostgreSQL 18 on ZFS for atomic snapshots, lz4 compression, and silent corruption detection. Tuning guide, backup automation scripts, and the real pitfalls.

Postgres vs SQLite for Home Lab Apps

Postgres vs SQLite for Home Lab Apps

SQLite is brilliant until you need concurrent writes, replication, or online migrations. Here's the actual line where Postgres earns its keep.

Understanding PostgreSQL Connection URIs

Understanding PostgreSQL Connection URIs

· Updated:

Decode the postgresql:// connection string, host, port, database, SSL mode, and the gotchas that cause connection refused at deploy time.