process
process copied to clipboard
An async process dispatcher for Amp.
Hi, testing Parallel v2 with fibers on php 8.1 FPM with a simple task service, but it cannot work anymore because the underlaying Process requires pcntl which is not available...
The following code: ``` Loop::run(static function () { $process = new Process("diskpart"); yield $process->start(); }); ``` Problem: app just stucks and does not stdout anything, using a timeout completely breaks...
I got this error when trying to login in to Madeline ! how I can fix it?
Fixes #51, #71. Original patch: https://github.com/Nicodinus/amphp-process/commit/3d41ea5cf00b8cc5331b0fcf7bd27878cc72063a
Hi, I couldn't find information anywhere whether the 1.x branch is still maintained. If it isn't, my apologies for bothering you. I found that trying to start a non-existent executable...
_This is not a bug, only a little help that might be useful for some people passing through here._ It might be worth noting a scenario I've just encountered: I'm...
Exception "ProcessException: Received 0 of 5 expected bytes" when reading from stdout out of time
I've been experimenting with Amp\Process to better understand how it works. I launched several processes, connecting them stdout -> stdin, simulated various situations in order to understand where errors could...
I'm not sure if y'all take support requests directly through the issue queue, so I'll try my luck. I created the tool [Drall](https://github.com/jigarius/drall) and one of it's main features is...
Is there a way to open more pipes? In normal PHP I can use proc_open to do something like this: ```php $descriptors = array( 0 => array("pipe", "r"), // STDIN...