<?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: Scaling Django to a Global Audience with Playdoh</title>
	<atom:link href="http://blog.mozilla.org/webdev/2011/07/26/scaling-django-to-a-global-audience-with-playdoh/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mozilla.org/webdev/2011/07/26/scaling-django-to-a-global-audience-with-playdoh/</link>
	<description>Engineering the web</description>
	<lastBuildDate>Fri, 17 May 2013 21:43:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Anderson</title>
		<link>http://blog.mozilla.org/webdev/2011/07/26/scaling-django-to-a-global-audience-with-playdoh/comment-page-1/#comment-216937</link>
		<dc:creator>Anderson</dc:creator>
		<pubDate>Fri, 29 Jul 2011 00:14:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=1883#comment-216937</guid>
		<description><![CDATA[thanks for your answers Fred =]]]></description>
		<content:encoded><![CDATA[<p>thanks for your answers Fred =]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fred Wenzel</title>
		<link>http://blog.mozilla.org/webdev/2011/07/26/scaling-django-to-a-global-audience-with-playdoh/comment-page-1/#comment-216936</link>
		<dc:creator>Fred Wenzel</dc:creator>
		<pubDate>Fri, 29 Jul 2011 00:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=1883#comment-216936</guid>
		<description><![CDATA[We&#039;re not using South by default because in the past, we had problems with it being too &quot;smart&quot; and applying migrations differently between our development instances and staging/production servers. We found that the pain of fixing that was much larger than the work it took to just write (or copy-and-paste) a line or two of SQL.

That being said, there&#039;s nothing in Playdoh that would keep you from just using South, and in fact you&#039;re more than welcome to.

As for replication, note that Postgres 9.0 does include &quot;hot&quot; replication out of the box -- I haven&#039;t used it before, but I hear it works well.
]]></description>
		<content:encoded><![CDATA[<p>We&#8217;re not using South by default because in the past, we had problems with it being too &#8220;smart&#8221; and applying migrations differently between our development instances and staging/production servers. We found that the pain of fixing that was much larger than the work it took to just write (or copy-and-paste) a line or two of SQL.</p>
<p>That being said, there&#8217;s nothing in Playdoh that would keep you from just using South, and in fact you&#8217;re more than welcome to.</p>
<p>As for replication, note that Postgres 9.0 does include &#8220;hot&#8221; replication out of the box &#8212; I haven&#8217;t used it before, but I hear it works well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anderson</title>
		<link>http://blog.mozilla.org/webdev/2011/07/26/scaling-django-to-a-global-audience-with-playdoh/comment-page-1/#comment-216935</link>
		<dc:creator>Anderson</dc:creator>
		<pubDate>Thu, 28 Jul 2011 23:56:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=1883#comment-216935</guid>
		<description><![CDATA[I didn&#039;t know that mysql has all that built-in. 
I was struggling to do a replication on postgres using londiste.

For the migrations question above...there&#039;s a specific reason why you dont use &quot;south&quot;? Because south seems to be the most used app for these migrations on Django.

thanks for your answers and your video =]. 
I really enjoyed it]]></description>
		<content:encoded><![CDATA[<p>I didn&#8217;t know that mysql has all that built-in.<br />
I was struggling to do a replication on postgres using londiste.</p>
<p>For the migrations question above&#8230;there&#8217;s a specific reason why you dont use &#8220;south&#8221;? Because south seems to be the most used app for these migrations on Django.</p>
<p>thanks for your answers and your video =].<br />
I really enjoyed it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Moreno Cunha</title>
		<link>http://blog.mozilla.org/webdev/2011/07/26/scaling-django-to-a-global-audience-with-playdoh/comment-page-1/#comment-216934</link>
		<dc:creator>Moreno Cunha</dc:creator>
		<pubDate>Thu, 28 Jul 2011 22:07:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=1883#comment-216934</guid>
		<description><![CDATA[Very good news! ^-^
I can’t wait to check it out.]]></description>
		<content:encoded><![CDATA[<p>Very good news! ^-^<br />
I can’t wait to check it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fred Wenzel</title>
		<link>http://blog.mozilla.org/webdev/2011/07/26/scaling-django-to-a-global-audience-with-playdoh/comment-page-1/#comment-216933</link>
		<dc:creator>Fred Wenzel</dc:creator>
		<pubDate>Thu, 28 Jul 2011 21:37:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=1883#comment-216933</guid>
		<description><![CDATA[Rich: By migrations tool you mean the tool we use to do database migrations? We use a very simple tool named &quot;schematic&quot; that keeps track of what &quot;version&quot; your database has and lets you run arbitrary SQL (and lately: Python) files to change your database schema as you go. There are some (short) docs here that might help you, have you seen them? http://playdoh.readthedocs.org/en/latest/migrations.html]]></description>
		<content:encoded><![CDATA[<p>Rich: By migrations tool you mean the tool we use to do database migrations? We use a very simple tool named &#8220;schematic&#8221; that keeps track of what &#8220;version&#8221; your database has and lets you run arbitrary SQL (and lately: Python) files to change your database schema as you go. There are some (short) docs here that might help you, have you seen them? <a href="http://playdoh.readthedocs.org/en/latest/migrations.html" rel="nofollow">http://playdoh.readthedocs.org/en/latest/migrations.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fred Wenzel</title>
		<link>http://blog.mozilla.org/webdev/2011/07/26/scaling-django-to-a-global-audience-with-playdoh/comment-page-1/#comment-216932</link>
		<dc:creator>Fred Wenzel</dc:creator>
		<pubDate>Thu, 28 Jul 2011 21:34:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=1883#comment-216932</guid>
		<description><![CDATA[Anderson: We run most of our websites off MySQL, which has replication functionality built-in. We change the settings so one database considers itself the master, and all others are slaves that replicate from that master database. If the master goes down (luckily, a rare event) one of the slaves can be &quot;promoted&quot; to become a master then.]]></description>
		<content:encoded><![CDATA[<p>Anderson: We run most of our websites off MySQL, which has replication functionality built-in. We change the settings so one database considers itself the master, and all others are slaves that replicate from that master database. If the master goes down (luckily, a rare event) one of the slaves can be &#8220;promoted&#8221; to become a master then.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anderson</title>
		<link>http://blog.mozilla.org/webdev/2011/07/26/scaling-django-to-a-global-audience-with-playdoh/comment-page-1/#comment-216930</link>
		<dc:creator>Anderson</dc:creator>
		<pubDate>Thu, 28 Jul 2011 13:30:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=1883#comment-216930</guid>
		<description><![CDATA[Thats great. I would love work with you guys in mozilla. Thats definitelly one of my top dream jobs.

I have a question: You said you use at least two DB, one for writing other for reading. Wich tool, or how, you do replication between these databases?]]></description>
		<content:encoded><![CDATA[<p>Thats great. I would love work with you guys in mozilla. Thats definitelly one of my top dream jobs.</p>
<p>I have a question: You said you use at least two DB, one for writing other for reading. Wich tool, or how, you do replication between these databases?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich</title>
		<link>http://blog.mozilla.org/webdev/2011/07/26/scaling-django-to-a-global-audience-with-playdoh/comment-page-1/#comment-216927</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Thu, 28 Jul 2011 04:55:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=1883#comment-216927</guid>
		<description><![CDATA[I&#039;d love a tutorial on how to use your migrations tool!]]></description>
		<content:encoded><![CDATA[<p>I&#8217;d love a tutorial on how to use your migrations tool!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: w1sh</title>
		<link>http://blog.mozilla.org/webdev/2011/07/26/scaling-django-to-a-global-audience-with-playdoh/comment-page-1/#comment-216911</link>
		<dc:creator>w1sh</dc:creator>
		<pubDate>Wed, 27 Jul 2011 18:41:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=1883#comment-216911</guid>
		<description><![CDATA[Awesome video. Awesome project. I can&#039;t wait to dig in. :)

Thanks Mozilla for leading the way!]]></description>
		<content:encoded><![CDATA[<p>Awesome video. Awesome project. I can&#8217;t wait to dig in. <img src='http://blog.mozilla.org/webdev/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks Mozilla for leading the way!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mladen</title>
		<link>http://blog.mozilla.org/webdev/2011/07/26/scaling-django-to-a-global-audience-with-playdoh/comment-page-1/#comment-216901</link>
		<dc:creator>Mladen</dc:creator>
		<pubDate>Wed, 27 Jul 2011 02:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=1883#comment-216901</guid>
		<description><![CDATA[Awweesomeee.. will be exploring it in the next few days. This is a very necessary set of tools for anyone working on or learning Django. Thanks for working on this and even more for making it available!]]></description>
		<content:encoded><![CDATA[<p>Awweesomeee.. will be exploring it in the next few days. This is a very necessary set of tools for anyone working on or learning Django. Thanks for working on this and even more for making it available!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
