I'm interested to know how vert.x compares to industrial-strength "traditional" servlet containers. My guess is that vert.x would outperform them under certain conditions, but all in all they would scale better.
I believe servlets are still the most scalable web stack out there.
Well, I'm sure it's easy to beat servlets with a load that requires only one thread with a simple enough computation model. Servlets (and any truly multithreaded solution) trades single-thread performance with the ability to scale with the number of cores. That's what I meant.
So I would think that given a heavy load on a many-core machine with interesting enough computations, nothing could beat servlets' performance.
I believe servlets are still the most scalable web stack out there.