├── .env.example ├── .gitignore ├── README.md ├── composer.json ├── composer.lock ├── console.php └── src ├── Benchmark ├── AbstractBenchmark.php ├── BenchmarkResult.php ├── BinaryUuid.php ├── NormalId.php ├── OptimisedUuid.php ├── OptimisedUuidFromText.php └── TextualUuid.php ├── Command └── Benchmark.php ├── Console.php └── DatabaseCommand.php /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/uuid-mysql-performance/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | vendor/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/uuid-mysql-performance/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/uuid-mysql-performance/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/uuid-mysql-performance/HEAD/composer.lock -------------------------------------------------------------------------------- /console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/uuid-mysql-performance/HEAD/console.php -------------------------------------------------------------------------------- /src/Benchmark/AbstractBenchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/uuid-mysql-performance/HEAD/src/Benchmark/AbstractBenchmark.php -------------------------------------------------------------------------------- /src/Benchmark/BenchmarkResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/uuid-mysql-performance/HEAD/src/Benchmark/BenchmarkResult.php -------------------------------------------------------------------------------- /src/Benchmark/BinaryUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/uuid-mysql-performance/HEAD/src/Benchmark/BinaryUuid.php -------------------------------------------------------------------------------- /src/Benchmark/NormalId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/uuid-mysql-performance/HEAD/src/Benchmark/NormalId.php -------------------------------------------------------------------------------- /src/Benchmark/OptimisedUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/uuid-mysql-performance/HEAD/src/Benchmark/OptimisedUuid.php -------------------------------------------------------------------------------- /src/Benchmark/OptimisedUuidFromText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/uuid-mysql-performance/HEAD/src/Benchmark/OptimisedUuidFromText.php -------------------------------------------------------------------------------- /src/Benchmark/TextualUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/uuid-mysql-performance/HEAD/src/Benchmark/TextualUuid.php -------------------------------------------------------------------------------- /src/Command/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/uuid-mysql-performance/HEAD/src/Command/Benchmark.php -------------------------------------------------------------------------------- /src/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/uuid-mysql-performance/HEAD/src/Console.php -------------------------------------------------------------------------------- /src/DatabaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/uuid-mysql-performance/HEAD/src/DatabaseCommand.php --------------------------------------------------------------------------------