Hi,
If I create a web application using Vert.x that connects to an API or a database to fetch some data, I could use its async http or jdbc client to get the results.
Now, what I am curious about is that, if I choose a heavy task like reading a large number of records from a db using JDBC client and if I post multiple concurrent requests:
1. How are the callbacks triggered? Does any process poll each event and check if they're completed?
2. Where are all the requests stacked? Will it be in the callback queue?
3. Also, if I post large number of concurrent requests, where will the remaining handlers be stored if the number of requests is greater than my apps limit?
I just wanted to know more about the inner workings of the framework.
thanks,