<?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: ActsAsInsertOrUpdate</title>
	<atom:link href="http://blog.hungrymachine.com/2008/04/23/actsasinsertorupdate/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hungrymachine.com/2008/04/23/actsasinsertorupdate/</link>
	<description>The guys behind LivingSocial</description>
	<lastBuildDate>Fri, 12 Mar 2010 02:58:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: PWills</title>
		<link>http://blog.hungrymachine.com/2008/04/23/actsasinsertorupdate/comment-page-1/#comment-148</link>
		<dc:creator>PWills</dc:creator>
		<pubDate>Wed, 23 Apr 2008 03:40:00 +0000</pubDate>
		<guid isPermaLink="false">blog.hungrymachine.com/2008/11/13/actsasinsertorupdate#comment-148</guid>
		<description>FWIW, this is called “Upsert” by Oracle and “Merge” by Microsoft. I think both of those verbs are better than the slightly tedious “ActsAsInsertOrUpdate”.</description>
		<content:encoded><![CDATA[<p>FWIW, this is called “Upsert” by Oracle and “Merge” by Microsoft. I think both of those verbs are better than the slightly tedious “ActsAsInsertOrUpdate”.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://blog.hungrymachine.com/2008/04/23/actsasinsertorupdate/comment-page-1/#comment-149</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Wed, 23 Apr 2008 03:40:00 +0000</pubDate>
		<guid isPermaLink="false">blog.hungrymachine.com/2008/11/13/actsasinsertorupdate#comment-149</guid>
		<description>Sure...  ActsAsUpsert didnt sound as cool though...   Its a play on all the crazy ActsAsChicken, ActsAsTaggable, ActsAsCool, etc names used in the Rails community... The name was supposed to be funny..</description>
		<content:encoded><![CDATA[<p>Sure&#8230;  ActsAsUpsert didnt sound as cool though&#8230;   Its a play on all the crazy ActsAsChicken, ActsAsTaggable, ActsAsCool, etc names used in the Rails community&#8230; The name was supposed to be funny..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: geshido</title>
		<link>http://blog.hungrymachine.com/2008/04/23/actsasinsertorupdate/comment-page-1/#comment-150</link>
		<dc:creator>geshido</dc:creator>
		<pubDate>Wed, 23 Apr 2008 03:40:00 +0000</pubDate>
		<guid isPermaLink="false">blog.hungrymachine.com/2008/11/13/actsasinsertorupdate#comment-150</guid>
		<description>maybe use github.com for this patch?</description>
		<content:encoded><![CDATA[<p>maybe use github.com for this patch?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Vandenberk</title>
		<link>http://blog.hungrymachine.com/2008/04/23/actsasinsertorupdate/comment-page-1/#comment-151</link>
		<dc:creator>Peter Vandenberk</dc:creator>
		<pubDate>Wed, 23 Apr 2008 03:40:00 +0000</pubDate>
		<guid isPermaLink="false">blog.hungrymachine.com/2008/11/13/actsasinsertorupdate#comment-151</guid>
		<description>Extremely useful, even with the somewhat dire warning!  :-)

FWIW: we were using MySQL&#039;s &quot;REPLACE INTO...&quot; command to achieve the same net effect:

  http://dev.mysql.com/doc/refman/5.0/en/replace.html

... but the &quot;INSERT ... ON DUPLICATE KEY UPDATE&quot; functionality definitely seems a better way of doing things.</description>
		<content:encoded><![CDATA[<p>Extremely useful, even with the somewhat dire warning!  <img src='http://blog.hungrymachine.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>FWIW: we were using MySQL&#8217;s &quot;REPLACE INTO&#8230;&quot; command to achieve the same net effect:</p>
<p>  <a href="http://dev.mysql.com/doc/refman/5.0/en/replace.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/replace.html</a></p>
<p>&#8230; but the &quot;INSERT &#8230; ON DUPLICATE KEY UPDATE&quot; functionality definitely seems a better way of doing things.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dcpatton</title>
		<link>http://blog.hungrymachine.com/2008/04/23/actsasinsertorupdate/comment-page-1/#comment-152</link>
		<dc:creator>dcpatton</dc:creator>
		<pubDate>Wed, 23 Apr 2008 03:40:00 +0000</pubDate>
		<guid isPermaLink="false">blog.hungrymachine.com/2008/11/13/actsasinsertorupdate#comment-152</guid>
		<description>There is also REPLACE. There are differences:

http://www.mysqlperformanceblog.com/2007/01/18/insert-on-duplicate-key-update-and-replace-into/</description>
		<content:encoded><![CDATA[<p>There is also REPLACE. There are differences:</p>
<p><a href="http://www.mysqlperformanceblog.com/2007/01/18/insert-on-duplicate-key-update-and-replace-into/" rel="nofollow">http://www.mysqlperformanceblog.com/2007/01/18/insert-on-duplicate-key-update-and-replace-into/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin Marney</title>
		<link>http://blog.hungrymachine.com/2008/04/23/actsasinsertorupdate/comment-page-1/#comment-153</link>
		<dc:creator>Justin Marney</dc:creator>
		<pubDate>Wed, 23 Apr 2008 03:40:00 +0000</pubDate>
		<guid isPermaLink="false">blog.hungrymachine.com/2008/11/13/actsasinsertorupdate#comment-153</guid>
		<description>Is this plugin available somewheres?  I can&#039;t seem to track down the actual files and I&#039;d lvoe to take a look at how this works.

Thanks! J</description>
		<content:encoded><![CDATA[<p>Is this plugin available somewheres?  I can&#8217;t seem to track down the actual files and I&#8217;d lvoe to take a look at how this works.</p>
<p>Thanks! J</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: agiledevcool</title>
		<link>http://blog.hungrymachine.com/2008/04/23/actsasinsertorupdate/comment-page-1/#comment-154</link>
		<dc:creator>agiledevcool</dc:creator>
		<pubDate>Wed, 23 Apr 2008 03:40:00 +0000</pubDate>
		<guid isPermaLink="false">blog.hungrymachine.com/2008/11/13/actsasinsertorupdate#comment-154</guid>
		<description>This plugin would be really helpful.  Any sense of when it will become publicly available?</description>
		<content:encoded><![CDATA[<p>This plugin would be really helpful.  Any sense of when it will become publicly available?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
