<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	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>Brent Sordyl&#039;s blog &#187; asynchronous</title>
	<atom:link href="http://sordyl.info/category/asynchronous/feed/" rel="self" type="application/rss+xml" />
	<link>http://sordyl.info</link>
	<description>Daily links to Technology and e-Learning resources</description>
	<lastBuildDate>Fri, 24 May 2013 16:09:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sordyl.info' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Brent Sordyl&#039;s blog &#187; asynchronous</title>
		<link>http://sordyl.info</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sordyl.info/osd.xml" title="Brent Sordyl&#039;s blog" />
	<atom:link rel='hub' href='http://sordyl.info/?pushpress=hub'/>
		<item>
		<title>Starbucks Doesn&#8217;t Use Two-phase commits</title>
		<link>http://sordyl.info/2012/03/15/starbucks-doesnt-use-two-phase-commits/</link>
		<comments>http://sordyl.info/2012/03/15/starbucks-doesnt-use-two-phase-commits/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 13:18:50 +0000</pubDate>
		<dc:creator>Brent Sordyl</dc:creator>
				<category><![CDATA[asynchronous]]></category>
		<category><![CDATA[messaging]]></category>
		<category><![CDATA[martinfowler]]></category>

		<guid isPermaLink="false">http://sordyl.wordpress.com/?p=4148</guid>
		<description><![CDATA[when you place your order, the cashier marks a coffee cup with your order and places it into a queue. This queue is literally a line of coffee cups on top of the espresso machine. The queue decouples the cashier and barista, letting the cashier continue to take orders even when the barista is backed [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sordyl.info&#038;blog=18708468&#038;post=4148&#038;subd=sordyl&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>
when you place your order, the cashier marks a coffee cup with your order and places it into a queue. This queue is literally a line of coffee cups on top of the espresso machine. The queue decouples the cashier and barista, letting the cashier continue to take orders even when the barista is backed up. It also allows baristas to start servicing the queue  if the store gets busy, without impacting the cashier. </p>
<p> (Full Story: <a href='http://www.eaipatterns.com/docs/IEEE_Software_Design_2PC.pdf'>Starbucks Doesn&#8217;t Use Two-phase commits</a>)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sordyl.wordpress.com/4148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sordyl.wordpress.com/4148/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sordyl.info&#038;blog=18708468&#038;post=4148&#038;subd=sordyl&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sordyl.info/2012/03/15/starbucks-doesnt-use-two-phase-commits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e89862577db9e2fefcb2bda3a834550f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">newsmaven</media:title>
		</media:content>
	</item>
		<item>
		<title>has_many :bugs, :through =&gt; :rails: Introducing Cramp</title>
		<link>http://sordyl.info/2010/01/10/links4-110/</link>
		<comments>http://sordyl.info/2010/01/10/links4-110/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 21:00:04 +0000</pubDate>
		<dc:creator>Brent Sordyl</dc:creator>
				<category><![CDATA[asynchronous]]></category>
		<category><![CDATA[cramp]]></category>
		<category><![CDATA[eventmachine]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://sordyl.wordpress.com/2010/01/10/links4-110</guid>
		<description><![CDATA[Cramp is the latest entry on the ruby web frameworks list. However, unlike all the others, Cramp is an asynchronous framework, always running inside EventMachine reactor loop. Cramp isn’t a good fit for most of the web applications out there. However, Cramp is good at holding and working with a large number of open connections. [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sordyl.info&#038;blog=18708468&#038;post=1960&#038;subd=sordyl&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>
Cramp is the latest entry on the ruby web frameworks list. However, unlike all the others, Cramp is an asynchronous framework, always running inside EventMachine reactor loop. Cramp isn’t a good fit for most of the web applications out there. However, Cramp is good at holding and working with a large number of open connections. Hence it’ll work great for things like comet, long polling, streaming API or even when your application needs to handle thousands of concurrent connections.<br />
(Link: <a class="deliciouslink" href="http://m.onkey.org/2010/1/7/introducing-cramp"> :rails: Introducing Cramp&#8221; target=&#8221;_blank&#8221;&gt;has_many :bugs, :through =&gt; :rails: Introducing Cramp</a>)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sordyl.wordpress.com/1960/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sordyl.wordpress.com/1960/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sordyl.info&#038;blog=18708468&#038;post=1960&#038;subd=sordyl&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sordyl.info/2010/01/10/links4-110/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e89862577db9e2fefcb2bda3a834550f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">newsmaven</media:title>
		</media:content>
	</item>
	</channel>
</rss>
