3 个仓库
Runtimes that manage the lifecycle and execution of PHP worker processes to optimize performance.
Distinct from PHP Runtime Management: Candidates focus on C extensions or version management, not the process manager that keeps apps resident in memory.
Explore 3 awesome GitHub repositories matching programming languages & runtimes · PHP Process Managers. Refine with filters or upvote what's useful.
This project is a PHP application server and process manager designed to reduce request latency by keeping applications resident in memory. It functions as a load balancer that distributes incoming network requests across a pool of worker processes, eliminating the overhead of repetitive bootstrapping. The server routes network requests directly into application framework kernels, bypassing traditional web server layers. It includes a built-in mechanism for delivering static assets directly to clients and supports hot reloading by monitoring source files for changes and automatically restarti
Keeps PHP applications resident in memory to eliminate bootstrap overhead and reduce request latency.
Phpbrew is a PHP version manager and build tool used to compile and manage multiple versions of PHP from source within a local user directory. It provides a self-contained development environment that allows for installing and switching between different language versions without requiring root access. The system distinguishes itself by using a variant-driven build configuration, allowing users to compile binaries with specific feature sets, flags, and custom configuration options. It also functions as an extension manager that downloads, compiles, and activates third-party extensions from re
Controls the lifecycle and configuration of the PHP FastCGI Process Manager (PHP-FPM).
Octane 是一个 PHP 应用程序服务器加速器和进程管理器,将应用程序引导至内存中,以消除与每个单独请求相关的启动开销。它作为 Swoole 和 RoadRunner 等高并发引擎的运行时桥梁,利用持久工作进程来处理传入的 HTTP 请求。 该项目包括一个内存中应用程序状态管理器,使用原子表在工作进程间共享数据,以及一个并行执行多个操作以减少总请求延迟的并发任务运行器。它还通过在一定数量的请求后循环进程来管理工作进程生命周期,以防止内存泄漏。 其他功能涵盖定期后台任务调度和自动化开发重载,后者监控源代码的修改以触发服务器重启。
Manages the lifecycle of PHP worker processes, including automatic cycling to prevent memory leaks.