Maximilian Reichel

Results 5 comments of Maximilian Reichel

I had similar issues with Doctrine and Symfony ... rebooting the kernel between requests fixed it in my case. See https://github.com/php-runtime/runtime/pull/166

Same issue on Ubuntu 15.10 ... as @si-griffiths suggested `ldconfig` fixed it.

@Rainrider Since the reboot takes place between requests, it will take some extra time until the worker is able the handle the next request which might impact performance in case...

@alexander-schranz I guess that might be the general root cause for the issues. I had this type of side effects in two different SF/Doctrine projects so far using RoadRunner as...

@Rainrider The biggest advantage of using worker-mode is the performance gain. This is due to request hit a warm (running) application. That eliminates expensive overhead like parsing, class loading, etcpp....