Skip to content

Commit 3e054e8

Browse files
Remove libevent and libev from Reverb docs. Deprecated from React's event loop in reactphp/event-loop#273
1 parent 2c27e84 commit 3e054e8

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

reverb.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -225,13 +225,9 @@ forge hard nofile 10000
225225

226226
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.
227227

228-
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:
228+
Reverb will automatically switch to an `ext-uv` powered loop when available. This PHP extension is available for install via PECL:
229229

230230
```sh
231-
pecl install event
232-
# or
233-
pecl install ev
234-
# or
235231
pecl install uv
236232
```
237233

0 commit comments

Comments
 (0)