I'm considering configuring tomcat (or jetty) to use NIO (non-blocking IO) for several, of my apps using Spring/Hibernate, to improve performance.
I am still unsure right now how NIO works, but my assumption is that one thread can service multiple requests concurrently, or something along those lines.
My initial worry though is that Spring/Hibernate relies heavily on ThreadLocals and uses the "current thread" to identify the current session, etc...so will NIO be a problem with Spring & Hibernate or am I totally off the mark?
ThreadLocalsand the current thread to identify the current session then clearly you cannot use a strategy like NIO to economize on threads. – EJP Feb 13 at 9:39