-
|
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 evYou should see |
Beta Was this translation helpful? Give feedback.
Yeah I just answered myself, installing the
ext-evextension seemed to fix the issue:To install the
ext-evextension, 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 evYou should see
evin the output.