Articles

Performance public

The Basics of MySQL Query Caching

MySQL's Query Cache is incredibly versatile. It’s usually able to store a wide variety of values and return them from the memory (rather than the disk) to improve query execution times. This guide will explore the usages and limitations of query caching.

By Lukas Vileikis
2 years ago
MySQL

Unused Indexes in MySQL: A Basic Guide

Indexes are frequent friends for SELECT queries; however, if we want to use indexes, we must ensure that our database instances use them first. Indexes that are not utilized by our database instances are useless – they waste space and make INSERT, UPDATE, and DELETE queries slower.

By Lukas Vileikis
2 years ago
MySQL public

A Guide to MySQL JOINS

Large quantities of data are often stored in MySQL databases. Analysts and DBAs are constantly required to extract records from two or more tables based on specific requirements in order to evaluate that data quickly. This is when JOINS come in handy.

By Blessing krofegha
2 years ago