<?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"
	>
<channel>
	<title>Comments on: Does Performance Matter? Yes (And No)</title>
	<atom:link href="http://redmonk.com/sogrady/2006/10/02/does-performance-matter-yes-and-no/feed/" rel="self" type="application/rss+xml" />
	<link>http://redmonk.com/sogrady/2006/10/02/does-performance-matter-yes-and-no/</link>
	<description>because technology is just another ecosystem</description>
	<pubDate>Fri, 05 Dec 2008 17:32:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: christopher baus</title>
		<link>http://redmonk.com/sogrady/2006/10/02/does-performance-matter-yes-and-no/#comment-2440</link>
		<dc:creator>christopher baus</dc:creator>
		<pubDate>Tue, 03 Oct 2006 18:29:50 +0000</pubDate>
		<guid isPermaLink="false">http://redmonk.com/sogrady/wp/?p=1093#comment-2440</guid>
		<description>When I was working on feedflow we considered doing the UI in Rails and the backend crawling, etc. in C++.  

I think for large scale web apps a combination of low level C++ with a high level UI frameworks is a pretty good choice.

Thanks again for the links.

</description>
		<content:encoded><![CDATA[<p>When I was working on feedflow we considered doing the UI in Rails and the backend crawling, etc. in C++.  </p>
<p>I think for large scale web apps a combination of low level C++ with a high level UI frameworks is a pretty good choice.</p>
<p>Thanks again for the links.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stephen o'grady</title>
		<link>http://redmonk.com/sogrady/2006/10/02/does-performance-matter-yes-and-no/#comment-2439</link>
		<dc:creator>stephen o'grady</dc:creator>
		<pubDate>Tue, 03 Oct 2006 06:01:58 +0000</pubDate>
		<guid isPermaLink="false">http://redmonk.com/sogrady/wp/?p=1093#comment-2439</guid>
		<description>Danno: i'm interested in just that, now that Strongtalk's been open sourced.

christopher: i actually think you argued the case both effectively and quite rationally. you're clearly not a bigot, as your Python usage attests to, nor are you wrong that folks like Google and Yahoo get a lot of mileage and performance out of C++. in the Yahoo case, however, the C++ is the base layer, PHP as i understand it the standard on the presentation side. 

i'm totally with you on the concurrency point; there's a reason people are talking about Erlang, after all.</description>
		<content:encoded><![CDATA[<p>Danno: i&#8217;m interested in just that, now that Strongtalk&#8217;s been open sourced.</p>
<p>christopher: i actually think you argued the case both effectively and quite rationally. you&#8217;re clearly not a bigot, as your Python usage attests to, nor are you wrong that folks like Google and Yahoo get a lot of mileage and performance out of C++. in the Yahoo case, however, the C++ is the base layer, PHP as i understand it the standard on the presentation side. </p>
<p>i&#8217;m totally with you on the concurrency point; there&#8217;s a reason people are talking about Erlang, after all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christopher baus</title>
		<link>http://redmonk.com/sogrady/2006/10/02/does-performance-matter-yes-and-no/#comment-2438</link>
		<dc:creator>christopher baus</dc:creator>
		<pubDate>Tue, 03 Oct 2006 04:32:49 +0000</pubDate>
		<guid isPermaLink="false">http://redmonk.com/sogrady/wp/?p=1093#comment-2438</guid>
		<description>After rereading here, I think there was misunderstanding about what I said about the links on del.ico.us.  I didn't mean links I was loading up, but the links others had loaded.  But anywho...

I'm not all that religious about this.  I do think it is good to have some real datapoints.  It will be interesting to see if there are any reports of projects hitting a wall on Rails scalability in the next year.  I think the concurrency point is more of a serious issue than the data structure performance, but time will tell.</description>
		<content:encoded><![CDATA[<p>After rereading here, I think there was misunderstanding about what I said about the links on del.ico.us.  I didn&#8217;t mean links I was loading up, but the links others had loaded.  But anywho&#8230;</p>
<p>I&#8217;m not all that religious about this.  I do think it is good to have some real datapoints.  It will be interesting to see if there are any reports of projects hitting a wall on Rails scalability in the next year.  I think the concurrency point is more of a serious issue than the data structure performance, but time will tell.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christopher baus</title>
		<link>http://redmonk.com/sogrady/2006/10/02/does-performance-matter-yes-and-no/#comment-2437</link>
		<dc:creator>christopher baus</dc:creator>
		<pubDate>Tue, 03 Oct 2006 00:40:56 +0000</pubDate>
		<guid isPermaLink="false">http://redmonk.com/sogrady/wp/?p=1093#comment-2437</guid>
		<description>Thanks for the links.

Check out my latest post.  I might have to take back  my previous claims about python/ruby performance on a technicality. The reason smalltalk was looking so good was that it uses linked lists to implement lists, not because the VM is inheriently faster.

BTW, I like C++ because I can choose to go low level or stay high leve without leaving the language.  C++ isn't popular these days, but I think with the right framework it could be a decent web development platform.  

The way I look at it is that both Google and Bloglines have proven scalable and both are written with a bunch of C/C++ code.  

BTW, C++ really doesn't have a lot to do with C these days.  With the boost libraries you can get a lot of off the shelf functionality.</description>
		<content:encoded><![CDATA[<p>Thanks for the links.</p>
<p>Check out my latest post.  I might have to take back  my previous claims about python/ruby performance on a technicality. The reason smalltalk was looking so good was that it uses linked lists to implement lists, not because the VM is inheriently faster.</p>
<p>BTW, I like C++ because I can choose to go low level or stay high leve without leaving the language.  C++ isn&#8217;t popular these days, but I think with the right framework it could be a decent web development platform.  </p>
<p>The way I look at it is that both Google and Bloglines have proven scalable and both are written with a bunch of C/C++ code.  </p>
<p>BTW, C++ really doesn&#8217;t have a lot to do with C these days.  With the boost libraries you can get a lot of off the shelf functionality.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danno</title>
		<link>http://redmonk.com/sogrady/2006/10/02/does-performance-matter-yes-and-no/#comment-2436</link>
		<dc:creator>Danno</dc:creator>
		<pubDate>Mon, 02 Oct 2006 22:03:02 +0000</pubDate>
		<guid isPermaLink="false">http://redmonk.com/sogrady/wp/?p=1093#comment-2436</guid>
		<description>We just need some of those Smalltalker and Lisper compiler writers to come over to the dark side of the upstart new languages and we'll all be eating Bacon.

Or, maybe we could all start using Smalltalk and Lisp...

Or on the third hand which I've recently had surgically added, maybe we can get some kinda crazy ass VM that's super super fast and has high level implementations of all the crazy ass compiler tricks that make those dynamic languages so fast.

Want Tail recursion?  *bam* mix in the Trampoline module!</description>
		<content:encoded><![CDATA[<p>We just need some of those Smalltalker and Lisper compiler writers to come over to the dark side of the upstart new languages and we&#8217;ll all be eating Bacon.</p>
<p>Or, maybe we could all start using Smalltalk and Lisp&#8230;</p>
<p>Or on the third hand which I&#8217;ve recently had surgically added, maybe we can get some kinda crazy ass VM that&#8217;s super super fast and has high level implementations of all the crazy ass compiler tricks that make those dynamic languages so fast.</p>
<p>Want Tail recursion?  *bam* mix in the Trampoline module!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
