PHP code example of puper / laravoole

1. Go to this page and download the library: Download puper/laravoole 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/ */

    

puper / laravoole example snippets


[
    'base_config' => [
        'host' => '0.0.0.0',
    ]
]

public function boot()
{
    parent::boot();
    \Event::listen('laravoole.on_request', function ($request) {
        \Log::info($request->segments());
    });
}

[
    'handler_config' => [
        'worker_num' => 8,
    ]
]

[
    'handler_config' => [
        'count' => 8,
    ]
]
shell
php artisan vendor:publish --provider="Laravoole\LaravooleServiceProvider"