With tomcat 6.0.x, we can use Http11NIOprotocol and get scalable performance. Is there any specific reason/drawback of using NIOprotocol, that tomcat is not using this protocol as a default protocol?
|
feedback
|
|
In the general context of NIO, it usually pays to run some production benchmark measurements to ensure you are getting the performance you think you are. Remember that Http11NIOprotocol does some odd things, like simulated blocking, to achieve drop-in connector behavior--this is not free and could potentially be less performant that the default We are satisfied with the performance of our webapp with the default If performance really is a concern, you should investigate taking the more labor intensive step of using the AJP Connector I've personally had problems with In summary: the benefits of the NIO connector are debatable. Run benchmarks. Consider the AJP connector. | |||
|
feedback
|