├── .gitignore ├── README.ZH.MD ├── README.md ├── autoload.php ├── composer.json ├── src └── Async.php └── tests ├── AsyncTest.php ├── async.php ├── performance_async.php ├── performance_sync.php ├── promise.php ├── simple.php └── sync.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock -------------------------------------------------------------------------------- /README.ZH.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/async-mysql-php/HEAD/README.ZH.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/async-mysql-php/HEAD/README.md -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/async-mysql-php/HEAD/autoload.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/async-mysql-php/HEAD/composer.json -------------------------------------------------------------------------------- /src/Async.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/async-mysql-php/HEAD/src/Async.php -------------------------------------------------------------------------------- /tests/AsyncTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/async-mysql-php/HEAD/tests/AsyncTest.php -------------------------------------------------------------------------------- /tests/async.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/async-mysql-php/HEAD/tests/async.php -------------------------------------------------------------------------------- /tests/performance_async.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/async-mysql-php/HEAD/tests/performance_async.php -------------------------------------------------------------------------------- /tests/performance_sync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/async-mysql-php/HEAD/tests/performance_sync.php -------------------------------------------------------------------------------- /tests/promise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/async-mysql-php/HEAD/tests/promise.php -------------------------------------------------------------------------------- /tests/simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/async-mysql-php/HEAD/tests/simple.php -------------------------------------------------------------------------------- /tests/sync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/async-mysql-php/HEAD/tests/sync.php --------------------------------------------------------------------------------