Book Image

Mastering MariaDB

By : Federico Razzoli
Book Image

Mastering MariaDB

By: Federico Razzoli

Overview of this book

Table of Contents (19 chapters)
Mastering MariaDB
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Chapter 3. Optimizing Queries

This chapter explains the basics of how to improve the performance of the queries that are executed on a MariaDB server. First, the important tools required to find slow queries are described. Once we find such queries, we will need to find out why they are slow. Thus, a description of how MariaDB uses indexes follows. Then, we will discuss the EXPLAIN command, which shows how MariaDB executes a query. Contextually, we will also discuss the main execution strategy.

The topics covered in this chapter are:

  • The slow query log

  • The pt-query-digest command from Percona Toolkit

  • Indexes

  • Table statistics

  • The EXPLAIN statement

  • Important MariaDB optimizations