tpetry / laravel-mysql-explain

Get Visual MySQL EXPLAIN plans that are understandable for humans

Home Page:https://mysqlexplain.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Laravel MySQL Visual Explains

License PHP Laravel Latest Version on Packagist GitHub Unit Tests Action Status GitHub Static Analysis Action Status GitHub Code Style Action Status

MySQL Query optimization with the EXPLAIN command is unnecessarily complicated: The output contains a lot of cryptic information that is incomprehensible or entirely misleading.

This Laravel package collects many query metrics that will be sent to mysqlexplain.com and transformed to be much easier to understand.

Installation

You can install the package via composer:

composer require tpetry/laravel-mysql-explain

Usage

Query Builder

Three new methods have been added to the query builder for very easy submission of query plans:

Type Action
visualExplain returns URL to processed EXPLAIN output
dumpVisualExplain dumps URL to processed EXPLAIN output and continue normal execution
ddVisualExplain dumps URL to processed EXPLAIN output and stops execution
explainForHumans (deprecated) returns URL to processed EXPLAIN output
dumpExplainForHumans (deprecated) dumps URL to processed EXPLAIN output and continue normal execution
ddExplainForHumans (deprecated) dumps URL to processed EXPLAIN output and stops execution
// $url will be e.g. https://mysqlexplain.com/explain/01j2gcrbsjet9r8rav114vgfsy
$url = Film::where('description', 'like', '%astronaut%')
    ->visualExplain();

// URL to EXPLAIN will be printed to screen
$users = Film::where('description', 'like', '%astronaut%')
    ->dumpVisualExplain()
    ->get();

// URL to EXPLAIN will be printed to screen & execution is stopped
Film::where('description', 'like', '%astronaut%')
    ->ddVisualExplain();

Raw Queries

In some cases you are executing raw SQL queries and don't use the query builder. You can use the MysqlExplain facade to get the EXPLAIN url for them:

use Tpetry\MysqlExplain\Facades\MysqlExplain;

// $url will be e.g. https://mysqlexplain.com/explain/01j2gctgtheyva7a7mhpv8azje
$url = MysqlExplain::submitQuery(
    DB::connection('mysql'),
    'SELECT * FROM actor WHERE first_name = ?',
    ['PENEL\'OPE'],
);

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

Get Visual MySQL EXPLAIN plans that are understandable for humans

https://mysqlexplain.com

License:MIT License


Languages

Language:PHP 100.0%