No Picture
MinervaDB

MyRocks Bloom Filter: How It Works

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
MySQL Performance

MySQL 8 Multicolumn Index: How to Implement It

To implement a multi-column index in MySQL 8, you need to create an index that includes multiple columns in the index definition. The order of the columns in the index definition is important, as it […]
No Picture
PostgreSQL Performance

PostgreSQL Indexing: When Does BRIN Win?

BRIN (Block Range INdex) is a type of index in Postgres that is used for large tables with a large number of rows and a high degree of clustering. BRIN is an efficient way to […]