Documentation Index
Fetch the complete documentation index at: https://kawax.biz/llms.txt
Use this file to discover all available pages before exploring further.
Parallel execution with Laravel Concurrency
Stdio mode
Starting a process per task is not efficient, but this pattern works reliably. Because Concurrency serializes internal values, return a plaincontent() string instead of returning SessionEvent.
TCP mode
Since there is no process boot per request, TCP mode can look faster, but observed latency may still be similar. With the process driver, timeouts around 60 seconds are common in either mode. With the CLI-onlyfork driver, one request may succeed while another fails.
In observed tests, switching from gpt-5 to gpt-5.2 allowed both requests to complete.
Concurrency exists as a feature, but queue-based processing is still the safer default for long-running workloads.
For the latest updates, see the GitHub repository.