No Picture
MinervaDB

When is memory allocated in PostgreSQL?

In PostgreSQL, memory allocation occurs at various stages during the execution of queries and other database operations. Here are some key points where memory is allocated in PostgreSQL: It’s important to note that memory allocation […]

No Picture
MinervaDB

PostgreSQL multipass hash joins Explained.

In PostgreSQL, multipass hash joins are a type of join algorithm used to efficiently process join operations between large tables. Unlike traditional hash joins that require loading the entire hash table into memory, multipass hash […]

No Picture
MinervaDB

Understanding clustering_factor in PostgreSQL

In PostgreSQL, the clustering_factor is a statistic that provides information about how well the physical order of rows in a table or index matches the logical order defined by the clustering key. It is particularly […]