From 0dc4bc30eaa44c960dce4b4e0d4397b953167571 Mon Sep 17 00:00:00 2001 From: William David Edwards Date: Thu, 6 Jun 2024 16:16:22 +0200 Subject: [PATCH] Remove libevent and libev from Reverb docs. Deprecated from React's event loop in https://github.com/reactphp/event-loop/pull/273 (#9693) --- reverb.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/reverb.md b/reverb.md index 48065d6dba..e1ecb5a0de 100644 --- a/reverb.md +++ b/reverb.md @@ -225,13 +225,9 @@ forge hard nofile 10000 Under the hood, Reverb uses a ReactPHP event loop to manage WebSocket connections on the server. By default, this event loop is powered by `stream_select`, which doesn't require any additional extensions. However, `stream_select` is typically limited to 1,024 open files. As such, if you plan to handle more than 1,000 concurrent connections, you will need to use an alternative event loop not bound to the same restrictions. -Reverb will automatically switch to an `ext-event`, `ext-ev`, or `ext-uv` powered loop when available. All of these PHP extensions are available for install via PECL: +Reverb will automatically switch to an `ext-uv` powered loop when available. This PHP extension is available for install via PECL: ```sh -pecl install event -# or -pecl install ev -# or pecl install uv ```