<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Erlang vs. Stackless python: a first benchmark</title>
	<atom:link href="http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/feed/" rel="self" type="application/rss+xml" />
	<link>http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/</link>
	<description>Cool ideas revolving around computers and programming</description>
	<lastBuildDate>Tue, 15 Dec 2009 18:31:07 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Hugh Perkins</title>
		<link>http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5369</link>
		<dc:creator>Hugh Perkins</dc:creator>
		<pubDate>Wed, 11 Nov 2009 01:28:39 +0000</pubDate>
		<guid isPermaLink="false">http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5369</guid>
		<description>Python seems to have an intrinsic limitation to threading, which is: the Global Interpreter Lock (GIL).

So, I&#039;ve created a threading framework for Python that uses Erlang semantics, and uses heavyweight processes rather than lightweight threads to achieve concurrency.

http://manageddreams.com/python-threadingx</description>
		<content:encoded><![CDATA[<p>Python seems to have an intrinsic limitation to threading, which is: the Global Interpreter Lock (GIL).</p>
<p>So, I&#8217;ve created a threading framework for Python that uses Erlang semantics, and uses heavyweight processes rather than lightweight threads to achieve concurrency.</p>
<p><a href="http://manageddreams.com/python-threadingx" rel="nofollow">http://manageddreams.com/python-threadingx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eyemirror</title>
		<link>http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5368</link>
		<dc:creator>eyemirror</dc:creator>
		<pubDate>Sun, 08 Nov 2009 20:04:25 +0000</pubDate>
		<guid isPermaLink="false">http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5368</guid>
		<description>hey what code tag are you using for erlang snippets???</description>
		<content:encoded><![CDATA[<p>hey what code tag are you using for erlang snippets???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stackless python</title>
		<link>http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5247</link>
		<dc:creator>stackless python</dc:creator>
		<pubDate>Mon, 17 Aug 2009 15:03:18 +0000</pubDate>
		<guid isPermaLink="false">http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5247</guid>
		<description>[...] http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/" rel="nofollow">http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Camille</title>
		<link>http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5197</link>
		<dc:creator>Camille</dc:creator>
		<pubDate>Sat, 04 Apr 2009 11:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5197</guid>
		<description>I&#039;m a bit worried about your post because I think there is nothing concurrent in this example.  It&#039;s interesting though.</description>
		<content:encoded><![CDATA[<p>I&#8217;m a bit worried about your post because I think there is nothing concurrent in this example.  It&#8217;s interesting though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Urban Koistinen</title>
		<link>http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5190</link>
		<dc:creator>Urban Koistinen</dc:creator>
		<pubDate>Mon, 02 Mar 2009 20:18:19 +0000</pubDate>
		<guid isPermaLink="false">http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5190</guid>
		<description>I tried it with SMP on my Athlon 3800 X2.

$ time erl -smp disable -noshell -s oringb main 100 90000 -s init stop &gt;&gt; Erlang R11B-5 here (N=100, M=90000)!


real	0m5.398s
user	0m3.920s
sys	0m0.452s
$ time erl -smp enable -noshell -s oringb main 100 90000 -s init stop 
&gt;&gt; Erlang R11B-5 here (N=100, M=90000)!


real	0m10.070s
user	0m13.733s
sys	0m2.188s</description>
		<content:encoded><![CDATA[<p>I tried it with SMP on my Athlon 3800 X2.</p>
<p>$ time erl -smp disable -noshell -s oringb main 100 90000 -s init stop &gt;&gt; Erlang R11B-5 here (N=100, M=90000)!</p>
<p>real	0m5.398s<br />
user	0m3.920s<br />
sys	0m0.452s<br />
$ time erl -smp enable -noshell -s oringb main 100 90000 -s init stop<br />
&gt;&gt; Erlang R11B-5 here (N=100, M=90000)!</p>
<p>real	0m10.070s<br />
user	0m13.733s<br />
sys	0m2.188s</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jessenoller.com - Stackless: You got your coroutines in my subroutines.</title>
		<link>http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5189</link>
		<dc:creator>jessenoller.com - Stackless: You got your coroutines in my subroutines.</dc:creator>
		<pubDate>Mon, 23 Feb 2009 20:43:49 +0000</pubDate>
		<guid isPermaLink="false">http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5189</guid>
		<description>[...] http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/" rel="nofollow">http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel C. Wang's Blog : Lightweight threading using C# Iterators</title>
		<link>http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5183</link>
		<dc:creator>Daniel C. Wang's Blog : Lightweight threading using C# Iterators</dc:creator>
		<pubDate>Mon, 29 Dec 2008 02:59:20 +0000</pubDate>
		<guid isPermaLink="false">http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5183</guid>
		<description>[...] I decided to write a simple threading library&#160; so, I can run the Erlang ring benchmark in [...]</description>
		<content:encoded><![CDATA[<p>[...] I decided to write a simple threading library&#160; so, I can run the Erlang ring benchmark in [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephan Schmidt</title>
		<link>http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5181</link>
		<dc:creator>Stephan Schmidt</dc:creator>
		<pubDate>Fri, 26 Dec 2008 08:41:59 +0000</pubDate>
		<guid isPermaLink="false">http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5181</guid>
		<description>There is a Erlang vs. Java comparison I reblogged:

http://codemonkeyism.com/archives/2008/06/21/interesting-picture-benchmarking-erlang-versus-java-concurrency/

Peace
-stephan</description>
		<content:encoded><![CDATA[<p>There is a Erlang vs. Java comparison I reblogged:</p>
<p><a href="http://codemonkeyism.com/archives/2008/06/21/interesting-picture-benchmarking-erlang-versus-java-concurrency/" rel="nofollow">http://codemonkeyism.com/archives/2008/06/21/interesting-picture-benchmarking-erlang-versus-java-concurrency/</a></p>
<p>Peace<br />
-stephan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Rogers</title>
		<link>http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5159</link>
		<dc:creator>Steve Rogers</dc:creator>
		<pubDate>Mon, 18 Aug 2008 16:27:08 +0000</pubDate>
		<guid isPermaLink="false">http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5159</guid>
		<description>Yaws is a web server written in Erlang which seems to compare favorably with Apache under heavy loads.

http://www.sics.se/~joe/apachevsyaws.html</description>
		<content:encoded><![CDATA[<p>Yaws is a web server written in Erlang which seems to compare favorably with Apache under heavy loads.</p>
<p><a href="http://www.sics.se/~joe/apachevsyaws.html" rel="nofollow">http://www.sics.se/~joe/apachevsyaws.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zhaoke</title>
		<link>http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5047</link>
		<dc:creator>zhaoke</dc:creator>
		<pubDate>Thu, 21 Feb 2008 22:28:35 +0000</pubDate>
		<guid isPermaLink="false">http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/#comment-5047</guid>
		<description>Stackless Python Tutorials and Resources
http://islab.org/stackless/</description>
		<content:encoded><![CDATA[<p>Stackless Python Tutorials and Resources<br />
<a href="http://islab.org/stackless/" rel="nofollow">http://islab.org/stackless/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
