Loading...
Loading...
Recent discussions spotlight how database indexes—especially in PostgreSQL—are often misunderstood, leading to slow queries and unnecessary write overhead. The articles emphasize that indexes are not a universal speed boost: they trade faster reads for extra storage and slower inserts/updates, and they can be ignored when predicates, data distribution, or query structure don’t match the index. They also highlight lesser-known Postgres features and pitfalls, such as multi-column ordering, selectivity, index-only scans and visibility map effects, partial and expression indexes, and how planner statistics shape index usage. Overall, the trend is toward more intentional, workload-driven indexing rather than “index everything.”
Potential Consequences of Using Postgres as a Job Queue
PGKeeper: Figma's Postgres connection pooler Renaissance era
Things you didn't know about indexes
&#32; submitted by &#32; <a href="https://www.reddit.com/user/NotTreeFiddy"> /u/NotTreeFiddy </a> <br/> <span><a href="https://jon.chrt.dev/2026/04/15/things-you-didnt-know-about-indexes.html">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/programming/comments/1sm5d83/things_you_didnt_know_about_postgres_indexes/">[comments]</a></span>