Download the PHP package addiks/doctrine-sql-auto-optimizer without Composer
On this page you can find all versions of the php package addiks/doctrine-sql-auto-optimizer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download addiks/doctrine-sql-auto-optimizer
More information about addiks/doctrine-sql-auto-optimizer
Files in addiks/doctrine-sql-auto-optimizer
Package doctrine-sql-auto-optimizer
Short Description Zero-configuration drop-in tool to automatically optimize SQL queries issued through doctrine
License GPL-3.0-only
Informations about the package doctrine-sql-auto-optimizer
Doctrine SQL Auto-Optimizer
This is a drop-in zero-configuration Doctrine extension that optimizes all SQL queries before execution. (It can also be used independently of doctrine, see below ...)
All of these optimizations can (depending on context) greatly improve the execution-speed of the executed SQL statements.
Currently implemented:
- Removes JOIN's when they are not referenced anywhere else in the query and cannot have an impact on the result-set size.
- Removes GROUP BY statements when all JOIN's are one-to-one and the grouping expression is a unique column.
- Removes DISTINCT from a SELECT statement if there cannot be any duplicated rows in the result-set.
- Removes DISTINCT from a COUNT(DISTINCT ...) if all counted values already are distinct.
Setup
First: composer require addiks/doctrine-sql-auto-optimizer
Then, depending on your system, there are multiple ways to activate the extension:
Option 1) Symfony
You can either import the services-xml file that is bundles with this package:
(You may need to alter the import path, depending on your configuration)
Or you can define your own service:
Option 2) Doctrine
Make sure the following is executed before doctrine connects to the database:
The (monolog-) logger is required so that the optimizer can report any issues to you (as notices).
The cache is optional, but highly recommended. Without cache, the (slow) optimizing process runs for every single query.
Option 3) Native PHP (without doctrine)
You can also use the query optimizer completely without doctrine:
Again, the cache is optional but highly recommended. No cache, no speed.
The creation of the schema in the SchemasClass::fromPDO
call is cached (if you provide a cache, that is).
All versions of doctrine-sql-auto-optimizer with dependencies
doctrine/dbal Version ^2.13
webmozart/assert Version ^1.11 || ^1.3
addiks/stored-sql Version ^0.1.6
monolog/monolog Version 3.x-dev || 2.* || ^1.27.1
symfony/http-kernel Version ^4.4 || ^5.4 || ^6.4 || ^7.1