<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Avoid NIO, Get Better Throughput</title>
	<atom:link href="http://blog.uncommons.org/2008/09/03/avoid-nio-get-better-throughput/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.uncommons.org/2008/09/03/avoid-nio-get-better-throughput/</link>
	<description>Rants and opinion interspersed with awe-inspiring tales of heoric software engineering endeavours.</description>
	<lastBuildDate>Tue, 02 Mar 2010 10:03:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Peter Lawrey</title>
		<link>http://blog.uncommons.org/2008/09/03/avoid-nio-get-better-throughput/comment-page-1/#comment-2932</link>
		<dc:creator>Peter Lawrey</dc:creator>
		<pubDate>Thu, 11 Sep 2008 06:09:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uncommons.org/?p=182#comment-2932</guid>
		<description>I recently got a significant improvement in performance using NIO in a blocking mode with one thread per connection.  Its a combination I wouldn&#039;t have thought of not long ago, but when I tested it got request/response time very close to that of a ping.
I agree that the trick about performance is don&#039;t assume, test because you will be surprised how often you would be wrong about these things. It keeps things interesting IMHO :)</description>
		<content:encoded><![CDATA[<p>I recently got a significant improvement in performance using NIO in a blocking mode with one thread per connection.  Its a combination I wouldn&#8217;t have thought of not long ago, but when I tested it got request/response time very close to that of a ping.<br />
I agree that the trick about performance is don&#8217;t assume, test because you will be surprised how often you would be wrong about these things. It keeps things interesting IMHO <img src='http://blog.uncommons.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blog bookmarks 09/05/2008 &#171; My Diigo bookmarks</title>
		<link>http://blog.uncommons.org/2008/09/03/avoid-nio-get-better-throughput/comment-page-1/#comment-2909</link>
		<dc:creator>Blog bookmarks 09/05/2008 &#171; My Diigo bookmarks</dc:creator>
		<pubDate>Fri, 05 Sep 2008 08:39:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uncommons.org/?p=182#comment-2909</guid>
		<description>[...] New Adventures in Software » Avoid NIO, Get Better Throughput [...]</description>
		<content:encoded><![CDATA[<p>[...] New Adventures in Software » Avoid NIO, Get Better Throughput [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlos orrego</title>
		<link>http://blog.uncommons.org/2008/09/03/avoid-nio-get-better-throughput/comment-page-1/#comment-2902</link>
		<dc:creator>carlos orrego</dc:creator>
		<pubDate>Thu, 04 Sep 2008 13:58:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uncommons.org/?p=182#comment-2902</guid>
		<description>Tomcat 6 running with the NIO conector works marvelous
and its Throughput is order of magnitude better thatn tradition i/o blocking at leat for my application</description>
		<content:encoded><![CDATA[<p>Tomcat 6 running with the NIO conector works marvelous<br />
and its Throughput is order of magnitude better thatn tradition i/o blocking at leat for my application</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abch</title>
		<link>http://blog.uncommons.org/2008/09/03/avoid-nio-get-better-throughput/comment-page-1/#comment-2901</link>
		<dc:creator>abch</dc:creator>
		<pubDate>Thu, 04 Sep 2008 09:01:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uncommons.org/?p=182#comment-2901</guid>
		<description>&quot;Avoid superstition.&quot; :-) or do no trust sales men. 

did not manage to find  the benchmark code for Paul Tyma claims. ;-) . so... 
sceptical about the article.</description>
		<content:encoded><![CDATA[<p>&#8220;Avoid superstition.&#8221; <img src='http://blog.uncommons.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  or do no trust sales men. </p>
<p>did not manage to find  the benchmark code for Paul Tyma claims. <img src='http://blog.uncommons.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  . so&#8230;<br />
sceptical about the article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://blog.uncommons.org/2008/09/03/avoid-nio-get-better-throughput/comment-page-1/#comment-2895</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Wed, 03 Sep 2008 18:55:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uncommons.org/?p=182#comment-2895</guid>
		<description>MLeo, thanks, I just fixed the link.</description>
		<content:encoded><![CDATA[<p>MLeo, thanks, I just fixed the link.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MLeo</title>
		<link>http://blog.uncommons.org/2008/09/03/avoid-nio-get-better-throughput/comment-page-1/#comment-2893</link>
		<dc:creator>MLeo</dc:creator>
		<pubDate>Wed, 03 Sep 2008 17:58:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uncommons.org/?p=182#comment-2893</guid>
		<description>It seems that the link to the &quot;Thousands of Threads&quot; slides is broken.

Other than that, interesting article. Luckily for me, I never had a need for that low level programming. Interesting enough, I&#039;m going to be doing the SCJD certification soon, and in the requirements is explicitly stated that no java.nio is allowed. Instant fail if you do (but it also mentions that you need to use the JTable).</description>
		<content:encoded><![CDATA[<p>It seems that the link to the &#8220;Thousands of Threads&#8221; slides is broken.</p>
<p>Other than that, interesting article. Luckily for me, I never had a need for that low level programming. Interesting enough, I&#8217;m going to be doing the SCJD certification soon, and in the requirements is explicitly stated that no java.nio is allowed. Instant fail if you do (but it also mentions that you need to use the JTable).</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.218 seconds -->
