No Picture
MySQL Performance

MySQL 8 Invisible Indexes: How They Work

In MySQL 8, invisible indexes are a feature that allows you to create an index without it being used by the optimizer. This can be useful in situations where you want to test the impact […]
No Picture
PostgreSQL Performance

PostgreSQL Partitioned Bitmaps: How to Implement Them

Partitioned Bitmaps are a technique used to speed up queries on large databases by breaking them down into smaller pieces, or partitions, that can be searched independently. PostgreSQL supports Partitioned Bitmaps through the use of […]
No Picture
MinervaDB

Why are PostgreSQL updates getting slower?

UPDATE latency refers to the time taken by PostgreSQL to perform an UPDATE operation on a table. Slow UPDATE operations can negatively impact the overall performance of the database. Here are some steps to troubleshoot […]