Microservices IPC command factory for Laravel && Lumen
per3evere/preq is a Laravel package for microservices ipc command factory for laravel && lumen.
It currently has 7 GitHub stars and 3.064 downloads on Packagist (latest version v2.0.0).
Install it with composer require per3evere/preq.
Discover more Laravel packages by per3evere
or browse all Laravel packages to compare alternatives.
Last updated
Preq is a latency and fault tolerance library for Laravel && Lumen, inspired by Netflix’s Hystrix and upwork/phystrix
Require this package with composer:
composer require per3evere/preq --dev
Add ServiceProvider
add this to the providers array in config/app.php
Per3evere\Preq\PreqServiceProvider::class
add this in bootstrap/app.php
$app->register(Per3evere\Preq\PreqServiceProvider::class);
Create service command file
namespace App\Services;
use Per3evere\Preq\AbstractCommand;
class Example extends AbstractCommand
{
/**
* 同步执行命令.
*
* @return void
*/
public function run()
{
return 'run!';
}
/**
* 异步执行命令.
*
* @return \Guzzlehttp\Promise\Promise;
*/
public function runAsync()
{
// 返回注意返回类型.
}
}
execute it
$command = app('preq')->getCommand(\App\Services\Example::class);
// 同步执行命令
echo $command->execute();
// 异步执行命令
$command->queue();