Using NIO package for Tomcat connector?

2002-05-20 Thread Setera, Craig
Has there been any discussion on building a connector around the NIO package in Java 1.4? I just read an interesting article in the latest Java Developer's Journal about a web server built using this support and it looked excellent. Using NIO would lower the number of required threads and

Re: Using NIO package for Tomcat connector?

2002-05-20 Thread Christopher K. St. John
Setera, Craig wrote: Using NIO would lower the number of required threads and buffers/objects that would need to be created. The core servlet model can't really be converted to using non-blocking I/O. The whole point is that your servlet gets its own thread. On the other hand, other

Re: Using NIO package for Tomcat connector?

2002-05-20 Thread Remy Maucherat
Has there been any discussion on building a connector around the NIO package in Java 1.4? Yes. I just read an interesting article in the latest Java Developer's Journal about a web server built using this support and it looked excellent. Using NIO would lower the number of required

Re: Using NIO package for Tomcat connector?

2002-05-20 Thread costinm
On Mon, 20 May 2002, Setera, Craig wrote: Has there been any discussion on building a connector around the NIO package in Java 1.4? I just read an interesting article in the latest Java Developer's Journal about a web server built using this support and it looked excellent. Using NIO would