This repository contains benchmarks for some of the most popular PHP DataMapper's, used as a reference for performance optimizations in my personal project compositephp/db.
The projects benchmarked include:
- The benchmark executes 10 000 CRUD (Create, Read, Update, Delete) operations to assess the performance.
- The benchmark tests focus exclusively on the 'DataMapper' component of each project, employing simple queries that do not involve relationships, foreign keys, or joins.
Operations include:
- Creating a new record in the database.
- Reading the record by primary key.
- Updating one field for the found record.
- Deleting the record.
- MySQL 8.0
- Table used for the benchmark:
CREATE TABLE IF NOT EXISTS Users
(
`id` INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT,
`name` VARCHAR(255) NOT NULL,
`age` INTEGER NOT NULL,
`microtime` FLOAT NOT NULL,
`created_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL
);
Project | Time (seconds) | Memory Kb | Memory Peak Mb |
---|---|---|---|
Laravel Eloquent | 61.51 | 4950.91 | 8.063 |
Cycle ORM | 44.32 | 288.15 | 7.007 |
Doctrine | 37.45 | 870.24 | 6.408 |
CompositeDB | 24.71 | 143.46 | 2.217 |
PHPFUI ORM | 20.43 | 109.37 | 2.196 |
- PHP 8.1+
- Docker
- Composer
- PDO_MySQL extension
- Clone or download this repository
- Run
composer update
- Execute
docker-compose up
- Run benchmarks for each DataMapper separately:
php src/test-laravel.php
php src/test-cycle.php
php src/test-doctrine.php
php src/test-composite.php
php src/test-PHPFUI.php
This is a synthetic benchmark focused on speed and memory consumption and does not compare the feature list of the projects. Feel free to note any problems, inaccuracies, or shortcomings in using these projects and make a pull request to fix them.