Jacob Dreesen
Jacob Dreesen
I am referring to requests from Pimcore to the database/Redis. Due to its N+1 architecture, Pimcore generates a huge amount of requests/queries per HTTP request (which is definitely something that...
By the way (sorry for hijacking this issue, but as you already mention it): > If HTTP: those requests in the admin UI should be in parallel, not sequential, if...
I'll give that a try, thanks!
It turns out that it's not so easy at the moment due to the rather special setup we currently have. I'll wait for now and take another look at it...
To get `['key1' => 'value1', 42 => '42', 'key2' => 'value2', 51 => '51']` you would need to use `array_replace()` instead of `aray_merge()`. They behave the same for string keys,...
Like Symfony 7? :star_struck:
Are there that many deprecations in Symfony 6 that require BC breaks to solve? :cry:
It shouldn't be a problem if you support both library versions, the current one and additionally the next mayor version. Composer will then select the library versions matching with your...
> why not use `pimcore:build:classes` during container build? I think it's currently the way it is because of DX. If you generate the classes during container build, you have to...
> For Dev, we don't run entrypoint scripts at all, the developer manually runs the necessary commands in the CLI. We have made the experience that this is difficult for...