<?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: How to disable the query cache in rails 2.1</title>
	<atom:link href="http://pennysmalls.com/2008/10/01/how-to-disable-the-query-cache-in-rails-21/feed/" rel="self" type="application/rss+xml" />
	<link>http://pennysmalls.com/2008/10/01/how-to-disable-the-query-cache-in-rails-21/</link>
	<description>A blog about Ruby, Rails and other tech.  Mostly.</description>
	<lastBuildDate>Thu, 02 Sep 2010 19:56:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Doug</title>
		<link>http://pennysmalls.com/2008/10/01/how-to-disable-the-query-cache-in-rails-21/comment-page-1/#comment-5399</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Fri, 18 Sep 2009 20:15:37 +0000</pubDate>
		<guid isPermaLink="false">http://pennysmalls.com/?p=29#comment-5399</guid>
		<description>Stephen,

That&#039;s awesome - thanks so very much, this saves me a ton of time! And thanks for responding so quickly.

Doug</description>
		<content:encoded><![CDATA[<p>Stephen,</p>
<p>That&#8217;s awesome &#8211; thanks so very much, this saves me a ton of time! And thanks for responding so quickly.</p>
<p>Doug</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen Sykes</title>
		<link>http://pennysmalls.com/2008/10/01/how-to-disable-the-query-cache-in-rails-21/comment-page-1/#comment-5392</link>
		<dc:creator>Stephen Sykes</dc:creator>
		<pubDate>Thu, 17 Sep 2009 18:03:13 +0000</pubDate>
		<guid isPermaLink="false">http://pennysmalls.com/?p=29#comment-5392</guid>
		<description>Make a file called query_cached_off.rb in the directory config/initializers.  Place the code in there.  The next time you restart rails the query cache will be turned off.</description>
		<content:encoded><![CDATA[<p>Make a file called query_cached_off.rb in the directory config/initializers.  Place the code in there.  The next time you restart rails the query cache will be turned off.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://pennysmalls.com/2008/10/01/how-to-disable-the-query-cache-in-rails-21/comment-page-1/#comment-5391</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Thu, 17 Sep 2009 17:16:46 +0000</pubDate>
		<guid isPermaLink="false">http://pennysmalls.com/?p=29#comment-5391</guid>
		<description>Um - I&#039;m still very much a rails and ruby newbie, so how do you invoke/use this &quot;monkey patch&quot;  An example would be quite helpful.  This patch could save me a ton of time, so any help would be greatly appreciated!</description>
		<content:encoded><![CDATA[<p>Um &#8211; I&#8217;m still very much a rails and ruby newbie, so how do you invoke/use this &#8220;monkey patch&#8221;  An example would be quite helpful.  This patch could save me a ton of time, so any help would be greatly appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen Sykes</title>
		<link>http://pennysmalls.com/2008/10/01/how-to-disable-the-query-cache-in-rails-21/comment-page-1/#comment-311</link>
		<dc:creator>Stephen Sykes</dc:creator>
		<pubDate>Thu, 02 Oct 2008 07:03:41 +0000</pubDate>
		<guid isPermaLink="false">http://pennysmalls.com/?p=29#comment-311</guid>
		<description>I needed to disable query caching to do some testing with my slim-attributes gem ( http://slim-attributes.rubyforge.org/ ).

Conceivably your memory footprint could end up being smaller if you turn off query caching.  Probably marginal though.</description>
		<content:encoded><![CDATA[<p>I needed to disable query caching to do some testing with my slim-attributes gem ( <a href="http://slim-attributes.rubyforge.org/" rel="nofollow">http://slim-attributes.rubyforge.org/</a> ).</p>
<p>Conceivably your memory footprint could end up being smaller if you turn off query caching.  Probably marginal though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke Francl</title>
		<link>http://pennysmalls.com/2008/10/01/how-to-disable-the-query-cache-in-rails-21/comment-page-1/#comment-308</link>
		<dc:creator>Luke Francl</dc:creator>
		<pubDate>Wed, 01 Oct 2008 14:12:16 +0000</pubDate>
		<guid isPermaLink="false">http://pennysmalls.com/?p=29#comment-308</guid>
		<description>I recently had to figure out how to disable the query cache, but just for one method, so I used uncached. I wrote up that little article about how to do that in case anybody Googled it (thanks for the link!)

Just curious -- why do you need to disable query caching entirely?</description>
		<content:encoded><![CDATA[<p>I recently had to figure out how to disable the query cache, but just for one method, so I used uncached. I wrote up that little article about how to do that in case anybody Googled it (thanks for the link!)</p>
<p>Just curious &#8212; why do you need to disable query caching entirely?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Morgan Roderick</title>
		<link>http://pennysmalls.com/2008/10/01/how-to-disable-the-query-cache-in-rails-21/comment-page-1/#comment-307</link>
		<dc:creator>Morgan Roderick</dc:creator>
		<pubDate>Wed, 01 Oct 2008 12:06:32 +0000</pubDate>
		<guid isPermaLink="false">http://pennysmalls.com/?p=29#comment-307</guid>
		<description>Thanks for sharing!

Very useful monkey patch for developement :)</description>
		<content:encoded><![CDATA[<p>Thanks for sharing!</p>
<p>Very useful monkey patch for developement :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
