2019-09-25 06:39:49 +02:00
|
|
|
# actix-sse
|
|
|
|
Example of server-sent events, aka `EventSource`, with actix web.
|
|
|
|
|
|
|
|
```sh
|
2021-10-06 23:28:53 +02:00
|
|
|
cd other/server-sent-events
|
2019-09-25 06:39:49 +02:00
|
|
|
cargo run
|
|
|
|
```
|
|
|
|
|
2022-02-14 02:16:18 +01:00
|
|
|
Open http://127.0.0.1:8080/ with a browser, then send events with another HTTP client:
|
2019-09-25 06:39:49 +02:00
|
|
|
|
|
|
|
```sh
|
2022-02-14 02:16:18 +01:00
|
|
|
curl 127.0.0.1:8080/broadcast/my_message
|
2019-09-25 06:39:49 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
*my_message* should appear in the browser with a timestamp.
|
|
|
|
|
|
|
|
## Performance
|
2022-02-14 02:37:51 +01:00
|
|
|
This implementation can serve thousands of clients on a 2021 MacBook with no problems.
|
2019-09-25 06:39:49 +02:00
|
|
|
|
|
|
|
Run [benchmark.js](benchmark.js) to benchmark your own system:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ node benchmark.js
|
2022-02-14 02:16:18 +01:00
|
|
|
Connected: 1000, connection time: 201 ms, total broadcast time: 20 ms^C⏎
|
2019-09-25 06:39:49 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
### Error *Too many open files*
|
|
|
|
You may be limited to a maximal number of connections (open file descriptors). Setting maximum number of open file descriptors to 2048:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
ulimit -n 2048
|
|
|
|
```
|
|
|
|
|
|
|
|
Test maximum number of open connections with [drain.js](drain.js):
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ node drain.js
|
2022-02-14 02:16:18 +01:00
|
|
|
Connections dropped: 10450, accepting connections: false^C⏎
|
2019-09-25 06:39:49 +02:00
|
|
|
```
|
|
|
|
|
2022-02-14 02:37:51 +01:00
|
|
|
_Accepting connections_ indicates whether resources for the server have been exhausted.
|