-
I am running a Server-Sent Events (SSE) application with many keepalive connections using ReactPHP HttpServer. When scaling up the number of concurrent connections, I encounter the following warning:
What is the recommended way to increase this limit for high-concurrency SSE applications with ReactPHP HttpServer? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yeah I just answered myself, installing the To install the On Ubuntu/Debian
Verify InstallationRun: php -m | grep ev You should see |
Beta Was this translation helpful? Give feedback.
Yeah I just answered myself, installing the
ext-ev
extension seemed to fix the issue:To install the
ext-ev
extension, follow these steps:On Ubuntu/Debian
Install via PECL:
Enable the extension:
Add the following line to your
php.ini
(you can find the location withphp --ini
):Verify Installation
Run:
php -m | grep ev
You should see
ev
in the output.