Readouble

Laravel 11.x 並列処理

イントロダクションIntroduction

warning Warning! LaravelのConcurrencyファサードは、現在ベータであり、コミュニティーのフィードバッグを集めています。[!WARNING]Laravel's Concurrency facade is currently in beta while we gather community feedback.

時には、互いに依存していない複数の低速タスクを実行する必要があるでしょう。多くの場合、タスクを同時実行することで大幅なパフォーマンス改善が実現できます。LaravelのConcurrencyファサードは、クロージャを同時実行するためのシンプルで便利なAPIを提供します。Sometimes you may need to execute several slow tasks which do not depend on one another. In many cases, significant performance improvements can be realized by executing the tasks concurrently. Laravel's Concurrency facade provides a simple, convenient API for executing closures concurrently.

並列処理互換性Concurrency Compatibility

Laravel10.xのアプリケーションから、Laravel11.xへアップグレードした場合、アプリケーションのconfig/app.php設定ファイルのproviders配列へ、ConcurrencyServiceProviderを追加する必要があるでしょう。If you upgraded to Laravel 11.x from a Laravel 10.x application, you may need to add the ConcurrencyServiceProvider to the providers array in your application's config/app.php configuration file:

'providers' => ServiceProvider::defaultProviders()->merge([
    /*
     * パッケージサービスプロバイダ
     */
    Illuminate\Concurrency\ConcurrencyServiceProvider::class, // [tl! add]

    /*
     * アプリケーションサービスプロバイダ
     */
    App\Providers\AppServiceProvider::class,
    App\Providers\AuthServiceProvider::class,
    // App\Providers\BroadcastServiceProvider::class,
    App\Providers\EventServiceProvider::class,
    App\Providers\RouteServiceProvider::class,
])->toArray(),

いかに動作するかHow it Works

Laravelは指定クロージャをシリアライズし、隠しArtisan CLIコマンドへディスパッチすることで並行処理を実現します。Artisan CLIコマンドはクロージャのシリアライズを解除し、自身のPHPプロセス内でそれを呼び出します。クロージャが呼び出された後、結果の値はシリアライズされて親プロセスに戻されます。Laravel achieves concurrency by serializing the given closures and dispatching them to a hidden Artisan CLI command, which unserializes the closures and invokes it within its own PHP process. After the closure has been invoked, the resulting value is serialized back to the parent process.

Concurrencyファサードは、3つのドライバをサポートします。process(デフォルト)、forksyncです。The Concurrency facade supports three drivers: process (the default), fork, and sync.

forkドライバは、デフォルトのprocessドライバに比べパフォーマンスが向上しますが、PHPのCLI コンテキストでのみ使用できます。forkドライバを使用する前に、spatie/forkパッケージをインストールする必要があります。The fork driver offers improved performance compared to the default process driver, but it may only be used within PHP's CLI context, as PHP does not support forking during web requests. Before using the fork driver, you need to install the spatie/fork package:

composer require spatie/fork

syncドライバは主にテスト中で使用し、すべての並列処理を無効にして、親プロセス内で与えられたクロージャを順番に実行したいときに便利です。The sync driver is primarily useful during testing when you want to disable all concurrency and simply execute the given closures in sequence within the parent process.

タスクの同時実行Running Concurrent Tasks

タスクを並列実行するには、Concurrencyファサードのrunメソッドを呼び出します。runメソッドには、PHPの子プロセスで同時に実行するクロージャの配列を渡します。To run concurrent tasks, you may invoke the Concurrency facade's run method. The run method accepts an array of closures which should be executed simultaneously in child PHP processes:

use Illuminate\Support\Facades\Concurrency;
use Illuminate\Support\Facades\DB;

[$userCount, $orderCount] = Concurrency::run([
    fn () => DB::table('users')->count(),
    fn () => DB::table('orders')->count(),
]);

指定のドライバを使用するには、driverメソッドを使用します。To use a specific driver, you may use the driver method:

$results = Concurrency::driver('fork')->run(...);

または、デフォルトの並列実行ドライバを変更するため、config:publish Artisanコマンドでconcurrency設定ファイルをリソース公開し、ファイル内のdefaultオプションを更新する必要があります。Or, to change the default concurrency driver, you should publish the concurrency configuration file via the config:publish Artisan command and update the default option within the file:

php artisan config:publish concurrency

タスクの遅延実行Deferring Concurrent Tasks

クロージャの配列を並列実行したいが、それらのクロージャが返す結果には興味がない場合は、deferメソッドの使用を検討すべきでしょう。deferメソッドを呼び出すと、指定されたクロージャはすぐには実行されません。代わりに、LaravelはHTTPレスポンスがユーザーに送信された後に、クロージャを同時に実行します。If you would like to execute an array of closures concurrently, but are not interested in the results returned by those closures, you should consider using the defer method. When the defer method is invoked, the given closures are not executed immediately. Instead, Laravel will execute the closures concurrently after the HTTP response has been sent to the user:

use App\Services\Metrics;
use Illuminate\Support\Facades\Concurrency;

Concurrency::defer([
    fn () => Metrics::report('users'),
    fn () => Metrics::report('orders'),
]);

章選択

設定

明暗テーマ
light_mode
dark_mode
brightness_auto システム設定に合わせる
テーマ選択
photo_size_select_actual デフォルト
photo_size_select_actual モノクローム(白黒)
photo_size_select_actual Solarized風
photo_size_select_actual GitHub風(青ベース)
photo_size_select_actual Viva(黄緑ベース)
photo_size_select_actual Happy(紫ベース)
photo_size_select_actual Mint(緑ベース)
コードハイライトテーマ選択

明暗テーマごとに、コードハイライトのテーマを指定できます。

テーマ配色確認
スクリーン表示幅
640px
80%
90%
100%

768px以上の幅があるときのドキュメント部分表示幅です。

インデント
無し
1rem
2rem
3rem
原文確認
原文を全行表示
原文を一行ずつ表示
使用しない

※ 段落末のEボタンへカーソルオンで原文をPopupします。

Diff表示形式
色分けのみで区別
行頭の±で区別
削除線と追記で区別

※ [tl!…]形式の挿入削除行の表示形式です。

テストコード表示
両コード表示
Pestのみ表示
PHPUnitのみ表示
OS表示
全OS表示
macOSのみ表示
windowsのみ表示
linuxのみ表示
和文変換

対象文字列と置換文字列を半角スペースで区切ってください。(最大5組各10文字まで)

本文フォント

総称名以外はCSSと同様に、"〜"でエスケープしてください。

コードフォント

総称名以外はCSSと同様に、"〜"でエスケープしてください。

保存内容リセット

localStrageに保存してある設定項目をすべて削除し、デフォルト状態へ戻します。

ヘッダー項目移動

キーボード操作