Niv Penso
Niv Penso
So after a quick investigation, it seems that the issue is not in the server. it comes from `react/child-process` which is used by `php-watcher`. The main issue is that the...
So the way I see it the main problem here is that there is an issue with xdebug to communicate with a fork of a child-process. The question is why...
some updates: 1. it is possible to use [libuv](https://github.com/amphp/ext-uv) in order to watch files and paths. This lib is well-known (also used by NodeJS) and utilizes filesystem APIs to track...
some updates: Good news! `reactphp` by default checks (in `EventLoopFactory::create()`) whether the `libuv` is installed and if it is, it uses `libuv` as the async event-loop implementation. Since the `libuv`...
I have the exact same issue. I thought of solving it by adding an additional field `keep_dangled_image` to the configuration of the `rebuild` action section. by default `keep_dangled_image` will be...
can you please be more specific when saying "cache is not useful anymore" ? 1. Which caching parts are not useful? 2. What are the side effects of having the...
Here is where I got so far in my investigation after digging into `symfony/http-kernel` `Kernel::initializeContainer()` is the function that initiates the cache for the container. it first checks whether the...
I agree with you that working with streams sounds like a good solution but unfortunately, the kernel code for building the container and especially writing it into the filesystem is...
Just to update it seems that the `preload` kernel event can't help us here because the event is being fired after the container has created.
@raebbar good catch! @raebbar, Out of curiosity what is the reason to reboot the kernel for every test?