Reputation: 85
I am wondering how Quarkus is handling simultaneous requests to for example a REST API with json-rest.
Example:
Questions:
Can someone please point me to some documentation about that or give an explanation? Thank you.
Upvotes: 2
Views: 1990
Reputation: 206
Quarkus uses Vert.x under the hood which implements an event loop. This means that it can handle thousands of the requests because its threads are not blocked.
You may read more about it in the Vert.x's documentation: https://vertx.io/docs/vertx-core/java/
Upvotes: 3