yiisoft/yii2-queue
Yii2 Queue runs tasks asynchronously via pluggable queue backends: DB, Redis, RabbitMQ/AMQP, Beanstalk, ActiveMQ, and Gearman. Define jobs as classes implementing JobInterface and push them to the queue for background processing.
開発中は、Yii2 デバッグ・モジュールのためのパネルを追加したいと思うことも有るでしょう。 このパネルは、キューにあるタスクのカウンタとリストを表示します。
このパネルが表示されるためには、yiisoft/yii2-debug モジュールがアプリケーションにインストールされていなければなりません。
以下のようにアプリケーションを構成して下さい。
return [
'modules' => [
'debug' => [
'class' => \yii\debug\Module::class,
'panels' => [
'queue' => \yii\queue\debug\Panel::class,
],
],
],
];
How can I help you explore Laravel packages today?