No Picture
MinervaDB

InnoDB Page Compression: How It Is Implemented

Page compression is implemented in InnoDB using the “Compressed InnoDB Tables” feature. This feature compresses the data stored in individual pages of the InnoDB tables, reducing their size and thus reducing the amount of disk […]
No Picture
MySQL Performance

MySQL 8 Partition Pruning: How It Improved

In MySQL 8, partition pruning has been improved to make it more efficient and flexible. Partition pruning is a performance optimization technique that helps to minimize the amount of data that needs to be scanned […]
No Picture
PostgreSQL Performance

PostgreSQL Transaction Model MVCC: How It Is Implemented

How is the transaction model implemented in PostgreSQL? In PostgreSQL, transactions are implemented using the Multi-Version Concurrency Control (MVCC) model. This means that each transaction is given a snapshot of the database at the start […]