|
|
|
|
|
by wiennat
2689 days ago
|
|
This immediately comes into my mind when I see the charts. It is also interesting to see that only one Node process can barely serve 10k connections. ----
After I check the source at [0]. They use a simple http module to serve the requests while they use `http.ListenAndServe` which spawns go routines, hence more CPU utilization. [0] https://gitlab.com/stressgrid/dummies |
|