承接 flyokai/revolt-event-loop 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

flyokai/revolt-event-loop

Composer 安装命令:

composer require flyokai/revolt-event-loop

包简介

Rock-solid event loop for concurrent PHP applications.

README 文档

README

User docs → README.md · Agent quick-ref → CLAUDE.md · Agent deep dive → AGENTS.md

Rock-solid cooperative event loop for PHP 8.1+ — fork of revolt/event-loop used as the foundation of every async operation in the Flyokai framework.

This package replaces revolt/event-loop (via Composer's replace) with a Flyokai-tracked fork that adds EventLoop::onMysqli() for the async-mysqli driver. The static API and semantics are otherwise identical to upstream.

Heads up. Most users want upstream revolt/event-loop. This package only matters if you depend on Flyokai's flyokai/laminas-db-driver-async, which uses onMysqli().

Features

  • Static EventLoop accessordefer, delay, repeat, onReadable, onWritable, onSignal, onMysqli
  • Suspension API — fiber pause/resume via getSuspension()->suspend()/resume()/throw()
  • FiberLocal — per-fiber storage backed by WeakMap
  • Auto-selected driverUvDriver > EvDriver > EventDriver > StreamSelectDriver
  • onMysqli() — Flyokai-specific addition: register a callback that fires when a mysqli connection running an async query is ready to be reaped

Installation

composer require revolt/event-loop

flyokai/revolt-event-loop replaces revolt/event-loop, so the standard package name resolves to this fork inside Flyokai installs.

Quick start

use Revolt\EventLoop;

EventLoop::defer(function () {
    echo "next tick\n";
});

EventLoop::delay(0.5, function () {
    echo "after 500ms\n";
});

$id = EventLoop::repeat(1.0, function () {
    echo "tick\n";
});

EventLoop::run();   // call from {main} only

Suspension from inside a fiber

$suspension = EventLoop::getSuspension();

EventLoop::delay(0.1, fn() => $suspension->resume('done'));

$result = $suspension->suspend();   // 'done'

Async mysqli (the Flyokai addition)

$mysqli->query($sql, MYSQLI_ASYNC);

$suspension = EventLoop::getSuspension();

EventLoop::onMysqli($mysqli, function ($watcherId, mysqli $link) use ($suspension) {
    EventLoop::cancel($watcherId);
    $suspension->resume($link->reap_async_query());
});

$result = $suspension->suspend();

This is the primitive that flyokai/laminas-db-driver-async's AsyncMysqli strategy is built on.

Driver selection

Auto-selected by DriverFactory in priority order:

  1. UvDriverext-uv (libuv). Highest performance.
  2. EvDriverext-ev (libev).
  3. EventDriverext-event (libevent). Cross-platform.
  4. StreamSelectDriver — pure PHP stream_select(). Default fallback. Limited to ~1024 FDs.
  5. TracingDriver — debug wrapper, set REVOLT_DRIVER_DEBUG_TRACE=1.

Override with REVOLT_DRIVER=\Full\Class\Name.

Tick model

Activate queued callbacks
   → Execute defer callbacks
   → Dispatch one timer / signal / stream callback (each)
   → Continue while any referenced callbacks remain

Every callback runs in its own fiber. Callbacks must return null or void — anything else throws InvalidCallbackError.

Gotchas

  • PHP version: requires >=8.1.17 or >=8.2.4 (older versions have GC bugs). Override with REVOLT_DRIVER_SUPPRESS_ISSUE_10496=1.
  • Callback return: must be null/void.
  • run() is {main} only. From a fiber, use the Suspension API.
  • fclose() doesn't auto-cancelcancel() the callback explicitly.
  • Signals are process-global. Same signal across drivers is undefined. Requires ext-pcntl.
  • StreamSelectDriver FD ceiling — ~1024. Install ext-uv/ext-ev/ext-event to raise it.
  • WeakMap fiber refs — circular references in user code can collect a fiber unexpectedly during GC.
  • Dead {main} suspension — if the loop exits without resuming {main}, the suspension is permanently invalid.
  • Error handler must handle or re-throw — exceptions inside the error handler halt the loop immediately.

License

MIT — Copyright (c) 2021- Revolt (Aaron Piotrowski, Cees-Jan Kiewiet, Christian Lück, Niklas Keller, and contributors). See LICENSE.

See also

flyokai/revolt-event-loop 适用场景与选型建议

flyokai/revolt-event-loop 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 23 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 04 月 24 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「event」 「event-loop」 「async」 「asynchronous」 「scheduler」 「concurrency」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 flyokai/revolt-event-loop 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 flyokai/revolt-event-loop 我们能提供哪些服务?
定制开发 / 二次开发

基于 flyokai/revolt-event-loop 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 23
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 35
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-04-24