Edmond

Results 17 comments of Edmond

I see that there have been no changes. The issue remains. https://github.com/symfony/console/blob/6.2/Application.php#L169

I just ran into this challenge today! the right idea!

> So our use case is this: alongside our "pure" unit tests we have some tests that use the database plus some Quite right. now I have to either: 1.define...

I figured it out. Windows requires a different approach to implement something similar. I tried to do it using your library as a base. It turned out pretty well!!! I...

> @EdmondDantes Do you have a code sample for the original issue? parent.php ```

I try ```try { $httpServer = new SocketHttpServer($logger, $socketFactory, $clientFactory); $bindContext = new \Amp\Socket\BindContext(); $httpServer->expose('127.0.0.1:1337', $bindContext->withReusePort()); ``` And it's send requests only to first worker

> @henderkes what you are talking about are async workers, which I also plan to add separately, once async is native to PHP (waiting for [this](https://github.com/php/php-src/pull/19142#discussion_r2326611773)). Async runtimes are a...

> ### Describe you feature request > If something like https://github.com/true-async/php-async gets merged into [php-src](https://wiki.php.net/rfc/true_async_engine_api) what would be the necessary steps to create an 'async' worker? In other words: a...

> Looks really interesting [@EdmondDantes](https://github.com/EdmondDantes) 👍 , will have a look This solution has several drawbacks that will need to be addressed: 1. Under high load, an empty page sometimes...

> Another drawback to async writes is that the buffered chunks will just queue up in memory if the response is big and the client has a slow network. A...