PHP code example of flyokai / laminas-db-driver-async
1. Go to this page and download the library: Download flyokai/laminas-db-driver-async library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
flyokai / laminas-db-driver-async example snippets
use Flyokai\LaminasDbDriverAsync\AsyncPdo\PdoWorkerPool;
use Flyokai\LaminasDbDriverAsync\AsyncPdo\Connection;
$pool = new PdoWorkerPool(workerLimit: 32);
$connection = new Connection($pool, [
'dsn' => 'mysql:host=localhost;dbname=app',
'username' => 'app',
'password' => 'secret',
]);
// Use $connection through Laminas DB exactly as you'd use a sync PDO connection.
use Flyokai\LaminasDbDriverAsync\AsyncMysqli\LinkPool;
use Flyokai\LaminasDbDriverAsync\AsyncMysqli\Connection;
$pool = new LinkPool($factory, max: 32);
$connection = new Connection($pool);