Skip to content

Commit

Permalink
Remove libevent and libev from Reverb docs. Deprecated from React's e…
Browse files Browse the repository at this point in the history
…vent loop in reactphp/event-loop#273
  • Loading branch information
WilliamDEdwards committed Jun 6, 2024
1 parent 2c27e84 commit 3e054e8
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions reverb.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down

0 comments on commit 3e054e8

Please sign in to comment.