concurrency.php 571 B

1234567891011121314151617181920
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Default Concurrency Driver
  6. |--------------------------------------------------------------------------
  7. |
  8. | This option determines the default concurrency driver that will be used
  9. | by Laravel's concurrency functions. By default, concurrent work will
  10. | be sent to isolated PHP processes which will return their results.
  11. |
  12. | Supported: "process", "fork", "sync"
  13. |
  14. */
  15. 'default' => env('CONCURRENCY_DRIVER', 'process'),
  16. ];