PHP code example of x / laravel-connection-pool
1. Go to this page and download the library: Download x/laravel-connection-pool 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/ */
x / laravel-connection-pool example snippets
// concurrent operations
go(fn () => Server::where('terminated_at', '<=', now()->subMinutes(5))->delete());
go(function () {
Session::where('active', true)->get()->each(function ($session) {
//
});
});
Swoole\Event::wait();
// run 100 SLEEP(1) queries at once, takes ~1s
for ($i = 0; $i < 100; $i++) {
go(fn () => DB::statement('SELECT SLEEP(1)'));
}
Swoole\Event::wait();