flyokai/revolt-event-loop 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

flyokai/revolt-event-loop

最新稳定版本:v1.0.9

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

统计信息

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

GitHub 信息

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

其他信息

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

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固