Concept of vert.x concerning a webserver?
问题 I don't quite get how vert.x is applied for a webserver. The concept I know for webserver is the thread-based one. You start your webserver, which then is running. Then for every client that connects, you get a socket, which is then passed to its own thread handler. The thread handler then processes the tasks for this specific socket. So it is clearly defined which thread is doing the work for which socket. However for every socket you need a new thread, which is expensive in the long run for