Hello,
We want to start using PHP gRPC clients but have a question regarding php-fpm and the grpc channel connections.
When we send a request with PHP, php-fpm maintains a pool of workers to deal with the request. When using gRPC channels, does the php process bring up and down the gRPC channel with the worker lifecycle?
When create a channel, I see that you can create it with the following option: grpc_target_persist_bound. Will php-fpm create and destroy a channel on every request, or will the php channel be shared when sending the same target is specified?
Has anyone seen this issue, or had similar encounters when using PHP gRPC with php-fpm? Thanks for any help.