spiral/roadrunner-worker
最新稳定版本:v3.6.2
Composer 安装命令:
composer require spiral/roadrunner-worker
包简介
RoadRunner: PHP worker
README 文档
README
RoadRunner is an open-source (MIT licensed) high-performance PHP application server, load balancer, and process manager. It supports running as a service with the ability to extend its functionality on a per-project basis.
RoadRunner includes PSR-7/PSR-17 compatible HTTP and HTTP/2 server and can be used to replace classic Nginx+FPM setup with much greater performance and flexibility.
Official Website | Documentation
Repository:
This repository contains the common codebase for all binary roadrunner workers. Check spiral/roadrunner to access application server and spiral/roadrunner-http for PSR-7 compatible worker.
You can use the convenient installer to download the latest available compatible version of RoadRunner assembly:
$ composer require spiral/roadrunner-cli --dev
To download latest version of application server:
$ vendor/bin/rr get
Example:
To init abstract RoadRunner worker:
<?php require __DIR__ . '/vendor/autoload.php'; // Create a new Worker from global environment $worker = \Spiral\RoadRunner\Worker::create(); while ($data = $worker->waitPayload()) { // Received Payload var_dump($data); // Respond Answer $worker->respond(new \Spiral\RoadRunner\Payload('DONE')); }
Testing:
This codebase is automatically tested via host repository - spiral/roadrunner.
License:
The MIT License (MIT). Please see LICENSE for more information. Maintained by Spiral Scout.
统计信息
- 总下载量: 9.15M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 21
- 点击次数: 1
- 依赖项目数: 23
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-04