Questions tagged [php-pm]

php-pm (PPM) is a process manager, supercharger and load balancer for PHP applications.

It's based on ReactPHP and works best with applications that use request-response frameworks like Symfony's HTTPKernel.

3 questions
2
votes
1 answer

PHP-PM Container does not answer request from different Docker container

I have a simple docker-compose setup with a nginx proxy and a container running PHP-PM: version: "3.5" services: proxy: image: nginx depends_on: - php_pm php_pm: build: . The Dockerfile for php_pm is…
tobias47n9e
  • 2,233
  • 3
  • 28
  • 54
1
vote
0 answers

Is running multiple web: processes possible?

Our PHP application runs on apache, however php-pm can be used make the application persistent (no warmup, database connection remains open, caches are populated and application initialized). I'd like to keep this behaviour when deploying to heroku,…
andig
  • 13,378
  • 13
  • 61
  • 98
0
votes
1 answer

Usage PPM on top of Aerys

There is "Don’t use any blocking I/O functions in Aerys." warning at https://amphp.org/aerys/io#blocking-io. Should I use PPM instead of Aerys if I need usage of PDO (e.g., Prooph components) and want to reuse initialized application instance for…