Re: Performance of Native library

2008-02-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jacob, Jacob Rhoden wrote: | Are there any web sites that show/compare the performance of a plain | install vs adding the native libraries for tomcat? How many of you guys | actually use the native libraries in production, ie is this common or |

Re: Performance of Native library

2008-02-15 Thread Bill Barker
Caldarale, Charles R [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] From: news [mailto:[EMAIL PROTECTED] On Behalf Of Bill Barker Subject: Re: Performance of Native library Thanks for the insight (not just the snippet below). If you serve a lot of large static files

RE: Performance of Native library

2008-02-15 Thread Caldarale, Charles R
From: news [mailto:[EMAIL PROTECTED] On Behalf Of Bill Barker Subject: Re: Performance of Native library But it really depends on how well your JVM provider has implimented sendfile in NIO on your platform Hmmm... I guess that's me :-) Thanks very much for the info. Just wish I had

Re: Performance of Native library

2008-02-14 Thread brien colwell
hi Jacob, You have to use native to use non blocking sockets the Comet architecture, which lets the number of active HTTP connections scale up beyond what blocking sockets would allow. I use the native lib for Comet ... Maybe this is a start ...

RE: Performance of Native library

2008-02-14 Thread Caldarale, Charles R
From: brien colwell [mailto:[EMAIL PROTECTED] Subject: Re: Performance of Native library You have to use native to use non blocking sockets the Comet architecture Not true - the pure Java NIO connector in Tomcat 6 also does the above: http://tomcat.apache.org/tomcat-6.0-doc/aio.html

Re: Performance of Native library

2008-02-14 Thread brien colwell
Yes, sorry for the phrasing. On Thu, Feb 14, 2008 at 5:26 PM, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: brien colwell [mailto:[EMAIL PROTECTED] Subject: Re: Performance of Native library You have to use native to use non blocking sockets the Comet architecture Not true

Re: Performance of Native library

2008-02-14 Thread Bill Barker
Jacob Rhoden [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, Are there any web sites that show/compare the performance of a plain install vs adding the native libraries for tomcat? How many of you guys actually use the native libraries in production, ie is this common or

RE: Performance of Native library

2008-02-14 Thread Caldarale, Charles R
From: news [mailto:[EMAIL PROTECTED] On Behalf Of Bill Barker Subject: Re: Performance of Native library Thanks for the insight (not just the snippet below). If you serve a lot of large static files, then it is likely to be faster on most OSs (due to being able to use sendfile). How does