No Picture
MinervaDB

How are Global Indexes implemented in PostgreSQL?

In PostgreSQL, global indexes are implemented using a shared-nothing architecture, which means that the index data is partitioned and distributed across multiple physical nodes or “shards.” This allows for parallel query processing and improved performance […]

No Picture
DBA

How do Bloom Filters Work in MyRocks?

Bloom filters are probabilistic data structures that are used for membership tests. They are particularly useful in databases as they allow faster and more efficient querying of data. In MyRocks, a storage engine based on […]

No Picture
MinervaDB

How Materialised Views work in PostgreSQL?

Materialized views in PostgreSQL are useful when you have frequently used queries that are complex, slow, or involve large amounts of data. In such cases, creating a materialized view can significantly improve query performance. A […]