The Event Loop in Spring Webflux of having 1 core per thread handling incoming requests is supposedly one main advantage of the framework.
At the low level, other than the NIO part, how is that model any different than how tradition Servlet handles requests?
In a traditional Servlet, there's also a loop running and whenever a thread is free it'll pick up the requests.
So how is Event Loop any different? They are the same to me.