No Picture
PostgreSQL Performance

Deadly default values in PostgreSQL

While default values in PostgreSQL can be convenient and provide initial values for columns, certain default values can have a detrimental impact on PostgreSQL performance. Here are some examples of potentially deadly default values and […]

No Picture
PostgreSQL Internals

Hints and Costs in PostgreSQL

Understanding Hints and Costs in PostgreSQL Query Optimization Firstly, hints and costs are two important concepts in PostgreSQL query optimization. They help improve query performance by giving the optimizer additional information about how to execute […]

No Picture
PostgreSQL Internals

Index Wildcard in PostgreSQL

Index wildcard is a technique used in PostgreSQL to create an index on a partial string in a column, rather than indexing the entire column. This technique can improve query performance when searching for data […]