alamagus

Results 6 comments of alamagus

Any thoughts on having built-in support for opentelemetry, like, yiisoft/yii-otel? https://github.com/open-telemetry/opentelemetry-php (it's not production ready yet though) https://groups.google.com/g/php-fig/c/6Nm0ZQ1_hJA/m/Fxp6EPsODgAJ

as a temporary solution for anyone who's running demo app on RR, amend [reset](https://github.com/yiisoft/view/blob/b87d31d5888d5a40dc2f0328e5c006b5440a2f77/config/web.php#L36): ```php 'reset' => function (\Psr\Container\ContainerInterface $container) use ($params) { /** @var WebView $this */ $this->clear(); $resolvedParams...

@darkdef don't you think that current design of `ConnectionPoolInterface` doesn't quite get along with Single Responsibility Principle? Say, if I want to use `ConnectionPoolInterface` with `RR`/`Swoole`, and I have only...

At least in [Swoole](https://openswoole.com/docs/modules/connection-pool) it's used to reuse connections, so there's no waste of time on establishing connections to db during every new request(you can't use single connection from different...

also worth noting that in Swagger-UI and in RapiDoc(9.3.3) query is generated differently(same OpenApi schema) when I fill Example for `filter` field with `{ "name": "Qwerty" } ` Swagger: ?filter%5Bname%5D=Qwerty...

@ChisWill Php cli(on top of which swoole is run) has no idea about coroutines. So, at any given time there is 0 or 1 session in the process. And when...