Any benchmark? How many simultaneous connections/messages can this framework handle on a single core? #1973
PasqualePuzio
announced in
General
Replies: 1 comment 2 replies
-
We don't have any official benchmarks - but under the hood we're using FastAPI for the websocket server which uses async calls to should scale up to many concurrent connections. For context, on some of our launch days we're able to handle 8000 unique users in a day on a small 2 core / 4GB machine, so the scalability is decent so far, but we are making more performance improvements. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I know this is a very complex question and it's really hard to give an accurate answer since it depends on a variety of factors including the complexity of the app and its state, but I was wondering if you have ever run a benchmark on this framework and what kind of performance and scalability we can expect.
I'm especially "concerned" with the the websocket mechanism, how many websockets can be open at the same time and how many messages the backend can handle per second.
Beta Was this translation helpful? Give feedback.
All reactions